summaryrefslogtreecommitdiff
path: root/VC++Files
diff options
context:
space:
mode:
authorunknown <guilhem@mysql.com>2004-06-21 16:37:33 +0200
committerunknown <guilhem@mysql.com>2004-06-21 16:37:33 +0200
commit6091a75f774ce8d3241c269db54a4f21784f0351 (patch)
treeac54c6276eb66b61d9890e39d089c0b4995d2506 /VC++Files
parentd2fb4c281c2c3d2d9967b167feab79f441b56618 (diff)
parent7ef30b69841e008958df2a6f855842b413e622f8 (diff)
downloadmariadb-git-6091a75f774ce8d3241c269db54a4f21784f0351.tar.gz
Merge gbichot@213.136.52.20:/home/bk/mysql-4.1
into mysql.com:/home/mysql_src/mysql-4.1-874
Diffstat (limited to 'VC++Files')
-rw-r--r--VC++Files/winmysqladmin/mysql_com.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/VC++Files/winmysqladmin/mysql_com.h b/VC++Files/winmysqladmin/mysql_com.h
index 7d7d77898c3..36d97c5b9a7 100644
--- a/VC++Files/winmysqladmin/mysql_com.h
+++ b/VC++Files/winmysqladmin/mysql_com.h
@@ -157,7 +157,7 @@ enum enum_field_types { FIELD_TYPE_DECIMAL, FIELD_TYPE_TINY,
enum enum_shutdown_level {
/*
- We want levels to be in growing order of gracefulness. So we leave room
+ We want levels to be in growing order of hardness. So we leave room
for future intermediate levels. For now, escalating one level is += 10;
later if we insert new levels in between we will need a function
next_shutdown_level(level). Note that DEFAULT does not respect the
@@ -169,11 +169,12 @@ enum enum_shutdown_level {
something). WAIT_ALL_BUFFERS is what we have now. Others are "this MySQL
server does not support this shutdown level yet".
*/
- SHUTDOWN_WAIT_CRITICAL_BUFFERS= 10, /* flush MyISAM buffs (no corruption) */
- SHUTDOWN_WAIT_ALL_BUFFERS= 20, /* flush InnoDB buffers */
+ SHUTDOWN_WAIT_CONNECTIONS= 10, /* wait for existing connections to finish */
+ SHUTDOWN_WAIT_TRANSACTIONS= 20, /* wait for existing trans to finish */
SHUTDOWN_WAIT_STATEMENTS= 30, /* wait for existing updating stmts to finish */
- SHUTDOWN_WAIT_TRANSACTIONS= 40, /* wait for existing trans to finish */
- SHUTDOWN_WAIT_CONNECTIONS= 50 /* wait for existing connections to finish */
+ SHUTDOWN_WAIT_ALL_BUFFERS= 40, /* flush InnoDB buffers */
+ SHUTDOWN_WAIT_CRITICAL_BUFFERS= 50, /* flush MyISAM buffs (no corruption) */
+ SHUTDOWN_ENUM_END= 255 /* must be last */
};
extern unsigned long max_allowed_packet;