diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2006-02-14 14:26:11 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2006-02-14 14:26:11 +0000 |
commit | 3608dd4c11827b8db5f610c95e4beab84cb8b0b7 (patch) | |
tree | cdbd4226d2efa0b418c6b8a9067fadcb4e8f1a61 /ext/pdo_mysql/php_pdo_mysql_int.h | |
parent | c65d61a301db232f6f656300370707c0cb51d2b2 (diff) | |
download | php-git-3608dd4c11827b8db5f610c95e4beab84cb8b0b7.tar.gz |
Fixed bug #36345 (PDO/MySQL problem loading BLOB over 1MB).
Diffstat (limited to 'ext/pdo_mysql/php_pdo_mysql_int.h')
-rwxr-xr-x | ext/pdo_mysql/php_pdo_mysql_int.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/pdo_mysql/php_pdo_mysql_int.h b/ext/pdo_mysql/php_pdo_mysql_int.h index 4fb0670520..85af4731dd 100755 --- a/ext/pdo_mysql/php_pdo_mysql_int.h +++ b/ext/pdo_mysql/php_pdo_mysql_int.h @@ -38,6 +38,7 @@ typedef struct { unsigned attached:1; unsigned buffered:1; unsigned _reserved:31; + unsigned long max_buffer_size; pdo_mysql_error_info einfo; } pdo_mysql_db_handle; @@ -82,5 +83,6 @@ enum { PDO_MYSQL_ATTR_INIT_COMMAND, PDO_MYSQL_ATTR_READ_DEFAULT_FILE, PDO_MYSQL_ATTR_READ_DEFAULT_GROUP, + PDO_MYSQL_ATTR_MAX_BUFFER_SIZE, }; #endif |