diff options
author | unknown <serg@serg.mysql.com> | 2001-11-28 17:55:45 +0100 |
---|---|---|
committer | unknown <serg@serg.mysql.com> | 2001-11-28 17:55:45 +0100 |
commit | f3918c8413199fff3339a62498ecc42d8c540c3a (patch) | |
tree | caee073830ac75c7f6485bf0a5d92ffda5d16255 /myisam/ft_dump.c | |
parent | 056c71f1ae445b96c13e241d40a729f16e65bb4a (diff) | |
download | mariadb-git-f3918c8413199fff3339a62498ecc42d8c540c3a.tar.gz |
boolean fulltext search without an index
myisam/ft_dump.c:
some help added
Diffstat (limited to 'myisam/ft_dump.c')
-rw-r--r-- | myisam/ft_dump.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/myisam/ft_dump.c b/myisam/ft_dump.c index 2c85669ff0e..940164f89c5 100644 --- a/myisam/ft_dump.c +++ b/myisam/ft_dump.c @@ -159,7 +159,7 @@ err: return 0; } -const char *options="dscve:h"; +const char *options="dscvh"; static void get_options(int argc, char *argv[]) { @@ -184,7 +184,15 @@ static void get_options(int argc, char *argv[]) static void usage(char *argv[]) { - printf("Use: %s [-%s] <table_name> <key_no>\n", *argv, options); + printf(" +Use: %s [-%s] <table_name> <index_no> + +-d dump index (incl. data offsets and word weights) +-s report global stats +-c calculate per-word stats (counts and global weights) +-v be verbose +-h this text\n +", *argv, options); exit(1); } |