diff options
author | unknown <jimw@mysql.com> | 2005-02-02 15:03:34 -0800 |
---|---|---|
committer | unknown <jimw@mysql.com> | 2005-02-02 15:03:34 -0800 |
commit | ba51652c2cd753566d768ccdf02f2de92a17a4b2 (patch) | |
tree | f9aa7c71dfae0854a75f41cace7661eff299c2fe | |
parent | 8ecae2e65cd09568bdfcedd9b22b5fe41cf6144c (diff) | |
download | mariadb-git-ba51652c2cd753566d768ccdf02f2de92a17a4b2.tar.gz |
Fix 'mysqlcheck --help' to not specify what storage engines are
supported, rather than give incorrect information. (Bug #8029)
client/mysqlcheck.c:
Make usage message more general as to what storage engines are supported.
-rw-r--r-- | client/mysqlcheck.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/mysqlcheck.c b/client/mysqlcheck.c index c670b84db44..babf4de0c3d 100644 --- a/client/mysqlcheck.c +++ b/client/mysqlcheck.c @@ -195,7 +195,7 @@ static void usage(void) puts("and you are welcome to modify and redistribute it under the GPL license.\n"); puts("This program can be used to CHECK (-c,-m,-C), REPAIR (-r), ANALYZE (-a)"); puts("or OPTIMIZE (-o) tables. Some of the options (like -e or -q) can be"); - puts("used at the same time. It works on MyISAM and in some cases on BDB tables."); + puts("used at the same time. Not all options are supported by all storage engines."); puts("Please consult the MySQL manual for latest information about the"); puts("above. The options -c,-r,-a and -o are exclusive to each other, which"); puts("means that the last option will be used, if several was specified.\n"); |