diff options
author | unknown <monty@tik.mysql.fi> | 2001-03-14 23:12:15 +0200 |
---|---|---|
committer | unknown <monty@tik.mysql.fi> | 2001-03-14 23:12:15 +0200 |
commit | 8d237d3e5fc8be0b926f4be112211586cadd82e0 (patch) | |
tree | 46b01016e548ecbb4173f5fd586be1e6766546a9 /include | |
parent | c6639098152b68b13aa77709e38c76515304381e (diff) | |
download | mariadb-git-8d237d3e5fc8be0b926f4be112211586cadd82e0.tar.gz |
Fixed CLIENT_TRANSACTIONS define
Fixed bug in SHOW VARIABLES when using innobase tables
Docs/manual.texi:
Updated support prices and support information
include/mysql_com.h:
Fixed CLIENT_TRANSACTIONS define
sql/mysqld.cc:
Fixed bug in SHOW VARIABLES when using innobase tables
BitKeeper/etc/logging_ok:
Logging to logging@openlogging.org accepted
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 */ |