]> granicus.if.org Git - php/commitdiff
MFB:Fixed bug #43912 (Interbase column names are truncated to 31 characters)
authorIlia Alshanetsky <iliaa@php.net>
Wed, 23 Jan 2008 01:22:57 +0000 (01:22 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Wed, 23 Jan 2008 01:22:57 +0000 (01:22 +0000)
NEWS
ext/interbase/php_ibase_includes.h

diff --git a/NEWS b/NEWS
index 330ef1f883cd8588adcaf395ecbaa2bfeb7ebc19..44fd654115175a17446ae199db01170a17c7cf7f 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -10,6 +10,8 @@ PHP                                                                        NEWS
 
 - Fixed faulty fix for bug #40189 (endless loop in zlib.inflate stream filter). 
   (Greg)
+- Fixed bug #43912 (Interbase column names are truncated to 31 characters).
+  (Ilia)
 - Fixed bug #43875 (Two error messages returned for $new and $flag argument
   in mysql_connect()). (Hannes)
 - Fixed bug #43863 (str_word_count() breaks on cyrillic "ya" in locale cp1251).
index b8f82d774821edb0090bb5e1432572017da7e4d2..bde6ccee9352d98026e38dac0cae6ecd1f4f5873 100755 (executable)
@@ -30,7 +30,7 @@
 #endif
 
 #ifndef METADATALENGTH
-#define METADATALENGTH 32
+#define METADATALENGTH 68
 #endif
 
 #define RESET_ERRMSG do { IBG(errmsg)[0] = '\0'; IBG(sql_code) = 0; } while (0)