diff options
author | unknown <monty@hundin.mysql.fi> | 2002-04-02 17:42:01 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-04-02 17:42:01 +0300 |
commit | 389e946182b82917b3a612a280aabfcc6e88db8d (patch) | |
tree | c58a80bda22774a430aec5183fd320d15bd29e03 /client/mysql.cc | |
parent | b344dbc2da2811e6c31274c3aa3b3df56fa0bdf6 (diff) | |
download | mariadb-git-389e946182b82917b3a612a280aabfcc6e88db8d.tar.gz |
Fixed help typos in mysql.cc
client/mysql.cc:
Fixed typos
configure.in:
Cleanup
sql/ha_innobase.cc:
Safety patch
sql/item_strfunc.cc:
cleanup
Diffstat (limited to 'client/mysql.cc')
-rw-r--r-- | client/mysql.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/mysql.cc b/client/mysql.cc index 60e97bff621..32547a4d138 100644 --- a/client/mysql.cc +++ b/client/mysql.cc @@ -34,7 +34,7 @@ #include "my_readline.h" #include <signal.h> -const char *VER="11.17"; +const char *VER="11.18"; /* Don't try to make a nice table if the data is too big */ #define MAX_COLUMN_LENGTH 1024 @@ -397,12 +397,12 @@ static struct option long_options[] = {"local-infile", optional_argument, 0, OPT_LOCAL_INFILE}, {"no-auto-rehash",no_argument, 0, 'A'}, {"no-named-commands", no_argument, 0, 'g'}, - {"no-tee", no_argument, 0, OPT_NOTEE}, #ifndef __WIN__ {"no-pager", no_argument, 0, OPT_NOPAGER}, {"nopager", no_argument, 0, OPT_NOPAGER}, /* we are kind */ {"pager", optional_argument, 0, OPT_PAGER}, #endif + {"no-tee", no_argument, 0, OPT_NOTEE}, {"notee", no_argument, 0, OPT_NOTEE}, /* we are kind */ {"tee", required_argument, 0, OPT_TEE}, {"one-database", no_argument, 0, 'o'}, @@ -484,7 +484,7 @@ static void usage(int version) still work from the first line.\n\ -G, --enable-named-commands\n\ Named commands are enabled. Opposite to -g.\n\ - -i, --ignore-space Ignore space after function names.\n\ + -i, --ignore-spaces Ignore spaces after function names.\n\ -h, --host=... Connect to host.\n\ -H, --html Produce HTML output.\n\ --local-infile=[1|0] Enable/disable LOAD DATA LOCAL INFILE\n\ |