diff options
author | unknown <monty@mysql.com> | 2004-05-05 21:24:21 +0300 |
---|---|---|
committer | unknown <monty@mysql.com> | 2004-05-05 21:24:21 +0300 |
commit | 000f76cfb844eeda1c1c0092d4ab97f3f3acb6cb (patch) | |
tree | 7237dcd91649e057a85eb3caca141f3df5892db8 /myisam/myisamchk.c | |
parent | cd21f7ce40ac4c7d415544a5b2aa07b1278419ac (diff) | |
download | mariadb-git-000f76cfb844eeda1c1c0092d4ab97f3f3acb6cb.tar.gz |
after merge fixes
client/mysqldump.c:
Fixed problem with multiple tables (--skip-quote didn't work properly for second table)
myisam/myisamchk.c:
after merge fix
Diffstat (limited to 'myisam/myisamchk.c')
-rw-r--r-- | myisam/myisamchk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/myisam/myisamchk.c b/myisam/myisamchk.c index 3bbeac00754..135797b8ff0 100644 --- a/myisam/myisamchk.c +++ b/myisam/myisamchk.c @@ -328,11 +328,11 @@ static struct my_option my_long_options[] = { "ft_max_word_len", OPT_FT_MAX_WORD_LEN, "", (gptr*) &ft_max_word_len, (gptr*) &ft_max_word_len, 0, GET_ULONG, REQUIRED_ARG, HA_FT_MAXCHARLEN, 10, HA_FT_MAXCHARLEN, 0, 1, 0}, - { 0, 0, 0, 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0} + { 0, 0, 0, 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0}, { "ft_stopword_file", OPT_FT_STOPWORD_FILE, "Use stopwords from this file instead of built-in list.", (gptr*) &ft_stopword_file, (gptr*) &ft_stopword_file, 0, GET_STR, - REQUIRED_ARG, 0, 0, 0, 0, 0, 0}, + REQUIRED_ARG, 0, 0, 0, 0, 0, 0} }; |