diff options
author | unknown <monty@hundin.mysql.fi> | 2001-12-02 14:34:01 +0200 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2001-12-02 14:34:01 +0200 |
commit | ebd29d50b0dcccda5db131a92a1ac36b38287685 (patch) | |
tree | 8e30a64d5c7aaa0ba8554c4c316cc9b76a6724ca /myisam/ft_dump.c | |
parent | 20e6f604c94b4a40497d919f0fa418c260ab4ccf (diff) | |
download | mariadb-git-ebd29d50b0dcccda5db131a92a1ac36b38287685.tar.gz |
Query cache.
Remove some warnings
Docs/manual.texi:
Solaris and gcc
include/ft_global.h:
Remove warnings
include/myisam.h:
Query cache
include/myisammrg.h:
Query cache
include/mysql_com.h:
Query cache
libmysqld/lib_sql.cc:
Query cache
myisam/ft_boolean_search.c:
Remove warnings
myisam/ft_dump.c:
Remove warnings
myisam/ft_parser.c:
Remove warnings
myisam/ft_static.c:
Remove warnings
myisam/ft_update.c:
Remove warnings
myisam/ftdefs.h:
Remove warnings
myisam/mi_delete.c:
Query cache
myisam/mi_locking.c:
Query cache
myisam/mi_update.c:
Query cache
myisam/myisamdef.h:
Optimize for Ia64
myisammrg/myrg_extra.c:
Query cache
mysys/mf_keycache.c:
DBUG statements
regex/cclass.h:
Remove warnings
regex/cname.h:
Remove warnings
regex/main.c:
Remove warnings
regex/regcomp.c:
Remove warnings
regex/regcomp.ih:
Remove warnings
regex/regerror.c:
Remove warnings
regex/reginit.c:
Remove warnings
regex/split.c:
Remove warnings
sql-bench/test-connect.sh:
Make tests query-cache safe.
sql-bench/test-transactions.sh:
Fix for old perl versions
sql/convert.cc:
Query cache
sql/ha_myisammrg.cc:
Query cache
sql/ha_myisammrg.h:
Query cache
sql/handler.cc:
Query cache
sql/item_create.cc:
Query cache
sql/item_func.cc:
Remove warnings
sql/item_func.h:
Remove warnings
sql/lex.h:
Query cache
sql/mysql_priv.h:
Query cache
sql/mysqld.cc:
Query cache
sql/net_serv.cc:
Query cache
sql/sql_cache.cc:
Query cache
sql/sql_class.cc:
Query cache
sql/sql_class.h:
Query cache
sql/sql_db.cc:
Query cache
sql/sql_delete.cc:
Query cache
sql/sql_insert.cc:
Query cache
sql/sql_parse.cc:
Query cache
sql/sql_select.cc:
Query cache
sql/sql_table.cc:
Query cache
sql/sql_update.cc:
Query cache
sql/sql_yacc.yy:
Query cache
Diffstat (limited to 'myisam/ft_dump.c')
-rw-r--r-- | myisam/ft_dump.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/myisam/ft_dump.c b/myisam/ft_dump.c index 940164f89c5..0d5fa7c8fd6 100644 --- a/myisam/ft_dump.c +++ b/myisam/ft_dump.c @@ -184,14 +184,14 @@ static void get_options(int argc, char *argv[]) static void usage(char *argv[]) { - 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 + printf("\n\ +Use: %s [-%s] <table_name> <index_no>\n\ +\n\ +-d dump index (incl. data offsets and word weights)\n\ +-s report global stats\n\ +-c calculate per-word stats (counts and global weights)\n\ +-v be verbose\n\ +-h this text\n\ ", *argv, options); exit(1); } |