diff options
author | tsmith@siva.hindu.god <> | 2007-03-28 10:19:10 -0600 |
---|---|---|
committer | tsmith@siva.hindu.god <> | 2007-03-28 10:19:10 -0600 |
commit | e64da592cea410e2df4d649277c3af7c3de6a6b1 (patch) | |
tree | f6898c31ff7d5a985370689a5fb4e8db273328b5 /client/client_priv.h | |
parent | 3a058b0a93f797265ca7a95624a84408db462807 (diff) | |
download | mariadb-git-e64da592cea410e2df4d649277c3af7c3de6a6b1.tar.gz |
Bug #26262: Add option to skip binary logging for mysqlcheck
Add the --skip-write-binlog option, which adds NO_WRITE_TO_BINLOG
to REPAIR, ANALYZE, and OPTIMIZE commands.
Use this option when these SQL commands should not be sent to
replication slaves, nor run when using the binary logs for recovery
from backup
Diffstat (limited to 'client/client_priv.h')
-rw-r--r-- | client/client_priv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/client_priv.h b/client/client_priv.h index 646619f62b1..5b3b3890603 100644 --- a/client/client_priv.h +++ b/client/client_priv.h @@ -60,5 +60,5 @@ enum options_client OPT_SLAP_AUTO_GENERATE_SQL_LOAD_TYPE, OPT_SLAP_AUTO_GENERATE_WRITE_NUM, OPT_MYSQL_REPLACE_INTO, OPT_BASE64_OUTPUT, OPT_SERVER_ID, OPT_FIX_TABLE_NAMES, OPT_FIX_DB_NAMES, OPT_SSL_VERIFY_SERVER_CERT, - OPT_DEBUG_INFO, OPT_COLUMN_TYPES + OPT_DEBUG_INFO, OPT_COLUMN_TYPES, OPT_WRITE_BINLOG }; |