summaryrefslogtreecommitdiff
path: root/myisam/myisam_ftdump.c
diff options
context:
space:
mode:
authorpaul@polar.kitebird.com <>2006-04-23 19:26:56 -0500
committerpaul@polar.kitebird.com <>2006-04-23 19:26:56 -0500
commit3cd7e135d478e5d844ab53f9b0f8091a7f38b886 (patch)
tree257516071b0b520ecf3cd779b4678413e7e92ff9 /myisam/myisam_ftdump.c
parenta4ff3120370f300ff11ce45ec3000cc6b28fbd31 (diff)
downloadmariadb-git-3cd7e135d478e5d844ab53f9b0f8091a7f38b886.tar.gz
myisam_ftdump.c:
myisam_ftdump options: --help first, then rest in lexical order.
Diffstat (limited to 'myisam/myisam_ftdump.c')
-rw-r--r--myisam/myisam_ftdump.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/myisam/myisam_ftdump.c b/myisam/myisam_ftdump.c
index 28aac0a8ecf..809d7bcca89 100644
--- a/myisam/myisam_ftdump.c
+++ b/myisam/myisam_ftdump.c
@@ -34,20 +34,20 @@ static uint lengths[256];
static struct my_option my_long_options[] =
{
- {"dump", 'd', "Dump index (incl. data offsets and word weights).",
+ {"help", 'h', "Display help and exit.",
0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
- {"stats", 's', "Report global stats.",
+ {"help", '?', "Synonym for -h.",
0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
- {"verbose", 'v', "Be verbose.",
- (gptr*) &verbose, (gptr*) &verbose, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
{"count", 'c', "Calculate per-word stats (counts and global weights).",
0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
- {"length", 'l', "Report length distribution.",
+ {"dump", 'd', "Dump index (incl. data offsets and word weights).",
0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
- {"help", 'h', "Display help and exit.",
+ {"length", 'l', "Report length distribution.",
0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
- {"help", '?', "Synonym for -h.",
+ {"stats", 's', "Report global stats.",
0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
+ {"verbose", 'v', "Be verbose.",
+ (gptr*) &verbose, (gptr*) &verbose, 0, GET_BOOL, 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}
};