diff options
author | unknown <bar@bar.mysql.r18.ru> | 2003-06-10 11:34:00 +0500 |
---|---|---|
committer | unknown <bar@bar.mysql.r18.ru> | 2003-06-10 11:34:00 +0500 |
commit | 8484e6f7598251c50c2439e6b2d26afe6729435a (patch) | |
tree | a8f12a3a4c1f3c07c5b626b62d9716412c74558b /client | |
parent | 0bb5b9eadddfc911bfaa7c6ee69db92fc7785c94 (diff) | |
download | mariadb-git-8484e6f7598251c50c2439e6b2d26afe6729435a.tar.gz |
mysqldump.c:
SET NAMES is not produced in compatibility modes
client/mysqldump.c:
SET NAMES is not produced in compatibility modes
Diffstat (limited to 'client')
-rw-r--r-- | client/mysqldump.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/client/mysqldump.c b/client/mysqldump.c index 18705b9e375..180ac41f87f 100644 --- a/client/mysqldump.c +++ b/client/mysqldump.c @@ -34,6 +34,7 @@ ** XML by Gary Huntress <ghuntress@mediaone.net> 10/10/01, cleaned up ** and adapted to mysqldump 05/11/01 by Jani Tolonen ** Added --single-transaction option 06/06/2002 by Peter Zaitsev +** 10 Jun 2003: SET NAMES and --no-set-names by Alexander Barkov */ #define DUMP_VERSION "10.2" @@ -434,6 +435,7 @@ get_one_option(int optid, const struct my_option *opt __attribute__((unused)), char buff[255]; opt_quoted= 1; + opt_set_names= 1; opt_compatible_mode_str= argument; opt_compatible_mode= find_set(&compatible_mode_typelib, argument, strlen(argument), |