diff options
author | kent@mysql.com/c-7b4072d5.010-2112-6f72651.cust.bredbandsbolaget.se <> | 2006-08-30 19:31:57 +0200 |
---|---|---|
committer | kent@mysql.com/c-7b4072d5.010-2112-6f72651.cust.bredbandsbolaget.se <> | 2006-08-30 19:31:57 +0200 |
commit | e5fbc6cff8339594c8bb2baad2548c19dd826fde (patch) | |
tree | a68c8f32d92a37dbbcf0cc088990abdf47f7008f /include/mysql_com.h | |
parent | cda07adf326c620b7a11bc05924ce5e12ddbcee6 (diff) | |
parent | c7431de4310abb62083803bb1654a5a8a903225c (diff) | |
download | mariadb-git-e5fbc6cff8339594c8bb2baad2548c19dd826fde.tar.gz |
Merge mysql.com:/Users/kent/mysql/bk/mysql-5.0-release
into mysql.com:/Users/kent/mysql/bk/mysql-5.0
Diffstat (limited to 'include/mysql_com.h')
-rw-r--r-- | include/mysql_com.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/mysql_com.h b/include/mysql_com.h index 60e726396cb..3f2bf5d43a5 100644 --- a/include/mysql_com.h +++ b/include/mysql_com.h @@ -134,8 +134,10 @@ enum enum_server_command #define CLIENT_TRANSACTIONS 8192 /* Client knows about transactions */ #define CLIENT_RESERVED 16384 /* Old flag for 4.1 protocol */ #define CLIENT_SECURE_CONNECTION 32768 /* New 4.1 authentication */ -#define CLIENT_MULTI_STATEMENTS 65536 /* Enable/disable multi-stmt support */ -#define CLIENT_MULTI_RESULTS 131072 /* Enable/disable multi-results */ +#define CLIENT_MULTI_STATEMENTS (((ulong) 1) << 16) /* Enable/disable multi-stmt support */ +#define CLIENT_MULTI_RESULTS (((ulong) 1) << 17) /* Enable/disable multi-results */ + +#define CLIENT_SSL_VERIFY_SERVER_CERT (((ulong) 1) << 30) #define CLIENT_REMEMBER_OPTIONS (((ulong) 1) << 31) #define SERVER_STATUS_IN_TRANS 1 /* Transaction has started */ |