diff options
author | unknown <tsmith@build.mysql.com> | 2004-11-16 23:45:24 +0100 |
---|---|---|
committer | unknown <tsmith@build.mysql.com> | 2004-11-16 23:45:24 +0100 |
commit | 52f9b2713c59ed15d57663751b667962c82e1fdd (patch) | |
tree | b2f23d6341d3478e3a64c2501b72cee5a193ca5d /client/client_priv.h | |
parent | 27697ea9b4816dd1d2f611650570a5cf32d6d39b (diff) | |
download | mariadb-git-52f9b2713c59ed15d57663751b667962c82e1fdd.tar.gz |
Add --order-by-primary option, which adds an ORDER BY
clause the the SELECT statement used to dump the data
for any table which has a primary or unique key. This
is useful for dumping MyISAM tables which will be later
imported into InnoDB tables.
client/client_priv.h:
add option OPT_ORDER_BY_PRIMARY
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 f16ec0e802b..39ecd32068e 100644 --- a/client/client_priv.h +++ b/client/client_priv.h @@ -45,5 +45,5 @@ enum options_client OPT_COMPATIBLE, OPT_RECONNECT, OPT_DELIMITER, OPT_SECURE_AUTH, OPT_OPEN_FILES_LIMIT, OPT_SET_CHARSET, OPT_CREATE_OPTIONS, OPT_START_POSITION, OPT_STOP_POSITION, OPT_START_DATETIME, OPT_STOP_DATETIME, - OPT_SIGINT_IGNORE, OPT_HEXBLOB + OPT_SIGINT_IGNORE, OPT_HEXBLOB, OPT_ORDER_BY_PRIMARY }; |