summaryrefslogtreecommitdiff
path: root/include/mysql_com.h
diff options
context:
space:
mode:
authorunknown <guilhem@mysql.com>2004-06-15 14:28:00 +0200
committerunknown <guilhem@mysql.com>2004-06-15 14:28:00 +0200
commit408dad07a949a570c59e5f660d648c4df727625c (patch)
treedd7376ccbab348aca1bac2e426994e8353ec5029 /include/mysql_com.h
parentaba49a6c0bf31b7b9c481058be660661797c8e77 (diff)
downloadmariadb-git-408dad07a949a570c59e5f660d648c4df727625c.tar.gz
Adding SHUTDOWN_WAIT_STATEMENTS to the possible arguments of mysql_shutdown().
Comments on names still welcome. include/mysql_com.h: one more possible shutdown level
Diffstat (limited to 'include/mysql_com.h')
-rw-r--r--include/mysql_com.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/mysql_com.h b/include/mysql_com.h
index bfd38f4f0fc..ef84ad4dea2 100644
--- a/include/mysql_com.h
+++ b/include/mysql_com.h
@@ -239,8 +239,9 @@ enum enum_shutdown_level {
*/
SHUTDOWN_WAIT_CRITICAL_BUFFERS= 10, /* flush MyISAM buffs (no corruption) */
SHUTDOWN_WAIT_ALL_BUFFERS= 20, /* flush InnoDB buffers */
- SHUTDOWN_WAIT_TRANSACTIONS= 30, /* wait for existing trans to finish */
- SHUTDOWN_WAIT_CONNECTIONS= 40 /* wait for existing connections to finish */
+ SHUTDOWN_WAIT_STATEMENTS= 30,
+ SHUTDOWN_WAIT_TRANSACTIONS= 40, /* wait for existing trans to finish */
+ SHUTDOWN_WAIT_CONNECTIONS= 50 /* wait for existing connections to finish */
};
/* options for mysql_set_option */