summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2008-01-23 01:22:57 +0000
committerIlia Alshanetsky <iliaa@php.net>2008-01-23 01:22:57 +0000
commitcfcb262dfb87129e5ad3a77c0892bb067d3adee4 (patch)
tree89ce57b36af239adc7fb186fa2cfc3055c3386fd
parent53311637155aa3eee1a2a74be2162b90600c5c61 (diff)
downloadphp-git-cfcb262dfb87129e5ad3a77c0892bb067d3adee4.tar.gz
MFB:Fixed bug #43912 (Interbase column names are truncated to 31 characters)
-rw-r--r--NEWS2
-rwxr-xr-xext/interbase/php_ibase_includes.h2
2 files changed, 3 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 330ef1f883..44fd654115 100644
--- 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).
diff --git a/ext/interbase/php_ibase_includes.h b/ext/interbase/php_ibase_includes.h
index b8f82d7748..bde6ccee93 100755
--- a/ext/interbase/php_ibase_includes.h
+++ b/ext/interbase/php_ibase_includes.h
@@ -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)