diff options
author | pwolanin <pwolanin@49851.no-reply.drupal.org> | 2014-11-07 17:18:44 -0500 |
---|---|---|
committer | Julien Pauli <jpauli@php.net> | 2014-12-05 17:03:31 +0100 |
commit | 4c0bd5e77a11d4e766ca523a54593a5c14a3f5df (patch) | |
tree | 72e3e9e676874b599e259fe72b5b114ad4ad6beb /ext/pdo_mysql/php_pdo_mysql_int.h | |
parent | fccd1eda5fe440105d051f4cbaa77ced95b674f0 (diff) | |
download | php-git-4c0bd5e77a11d4e766ca523a54593a5c14a3f5df.tar.gz |
Start adding new attribute to control multi statements
Diffstat (limited to 'ext/pdo_mysql/php_pdo_mysql_int.h')
-rw-r--r-- | ext/pdo_mysql/php_pdo_mysql_int.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/pdo_mysql/php_pdo_mysql_int.h b/ext/pdo_mysql/php_pdo_mysql_int.h index 26263222b9..36604b8dce 100644 --- a/ext/pdo_mysql/php_pdo_mysql_int.h +++ b/ext/pdo_mysql/php_pdo_mysql_int.h @@ -172,8 +172,9 @@ enum { PDO_MYSQL_ATTR_SSL_CAPATH, PDO_MYSQL_ATTR_SSL_CIPHER, #if MYSQL_VERSION_ID > 50605 || defined(PDO_USE_MYSQLND) - PDO_MYSQL_ATTR_SERVER_PUBLIC_KEY + PDO_MYSQL_ATTR_SERVER_PUBLIC_KEY, #endif + PDO_MYSQL_ATTR_MULTI_STATEMENTS, }; #endif |