diff options
author | unknown <monty@donna.mysql.com> | 2000-12-29 16:09:30 +0200 |
---|---|---|
committer | unknown <monty@donna.mysql.com> | 2000-12-29 16:09:30 +0200 |
commit | 53b6c99d04f3d3a4ff2c9b46d431d379bc5786e6 (patch) | |
tree | c869ff7b38fd9ca18dc3dffcadf4c09433fcb52a /client | |
parent | 07e250d328cc9247c37452a4e0e9301173105e2b (diff) | |
parent | a6ce6d3825e01aaf4293f81659af3cfe900bd9e2 (diff) | |
download | mariadb-git-53b6c99d04f3d3a4ff2c9b46d431d379bc5786e6.tar.gz |
Merge work:/my/mysql into donna.mysql.com:/home/my/bk/mysql
client/mysqltest.c:
Auto merged
mysql-test/mysql-test-run.sh:
Auto merged
Diffstat (limited to 'client')
-rw-r--r-- | client/mysqltest.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/client/mysqltest.c b/client/mysqltest.c index 535822d80fd..d65d451f408 100644 --- a/client/mysqltest.c +++ b/client/mysqltest.c @@ -992,10 +992,11 @@ void usage() -P, --port=... Port number to use for connection.\n\ -S, --socket=... Socket file to use for connection.\n\ -r, --record Record output of test_file into result file.\n\ - -R, --result-file=... Read/Store result from/in this file\n\ + -R, --result-file=... Read/Store result from/in this file.\n\ -v, --verbose Write more.\n\ -q, --quiet, --silent Suppress all normal output.\n\ - -V, --version Output version information and exit.\n\n"); + -V, --version Output version information and exit.\n\ + --no-defaults Don't read default options from any options file.\n\n"); } int parse_args(int argc, char **argv) @@ -1004,6 +1005,7 @@ int parse_args(int argc, char **argv) my_bool tty_password=0; load_defaults("my",load_default_groups,&argc,&argv); + while((c = getopt_long(argc, argv, "h:p::u:P:D:S:R:?rvVq", long_options, &option_index)) != EOF) { |