diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2008-01-23 01:23:12 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2008-01-23 01:23:12 +0000 |
commit | c89066d03e79afca0350f0a8dace16751ab089e2 (patch) | |
tree | b117f4aa9aef32976217469224b8e0d1ed7c6ab1 | |
parent | 2f1540e162bf336b6304725537b18e4e303ac9d2 (diff) | |
download | php-git-c89066d03e79afca0350f0a8dace16751ab089e2.tar.gz |
MFB:Fixed bug #43912 (Interbase column names are truncated to 31 characters)
-rwxr-xr-x | ext/interbase/php_ibase_includes.h | 2 |
1 files changed, 1 insertions, 1 deletions
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) |