diff options
author | monty@tik.mysql.fi <> | 2001-03-14 23:12:15 +0200 |
---|---|---|
committer | monty@tik.mysql.fi <> | 2001-03-14 23:12:15 +0200 |
commit | 66ba6da01490f1dd23f59b15706d2ead5fc453d8 (patch) | |
tree | 46b01016e548ecbb4173f5fd586be1e6766546a9 /include | |
parent | 2505d667c75166067aef0fbbbe33f1e680c87560 (diff) | |
download | mariadb-git-66ba6da01490f1dd23f59b15706d2ead5fc453d8.tar.gz |
Fixed CLIENT_TRANSACTIONS define
Fixed bug in SHOW VARIABLES when using innobase tables
Diffstat (limited to 'include')
-rw-r--r-- | include/mysql_com.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mysql_com.h b/include/mysql_com.h index f03dc0bf96e..8a5eea1024c 100644 --- a/include/mysql_com.h +++ b/include/mysql_com.h @@ -90,7 +90,7 @@ enum enum_server_command {COM_SLEEP,COM_QUIT,COM_INIT_DB,COM_QUERY, #define CLIENT_INTERACTIVE 1024 /* This is an interactive client */ #define CLIENT_SSL 2048 /* Switch to SSL after handshake */ #define CLIENT_IGNORE_SIGPIPE 4096 /* IGNORE sigpipes */ -#define CLIENT_TRANSACTIONS 8196 /* Client knows about transactions */ +#define CLIENT_TRANSACTIONS 8192 /* Client knows about transactions */ #define SERVER_STATUS_IN_TRANS 1 /* Transaction has started */ #define SERVER_STATUS_AUTOCOMMIT 2 /* Server in auto_commit mode */ |