diff options
author | unknown <serg@serg.mylan> | 2004-02-04 16:50:33 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-02-04 16:50:33 +0100 |
commit | 9d1f86a3a2b19bb6df33475b2fc1712dfe09b744 (patch) | |
tree | a42c1414f46916d9b0d7e9bb2bb4b562557272b1 /client | |
parent | d9016a9b4a528c3a2565e69cfa79596f1c93bc31 (diff) | |
download | mariadb-git-9d1f86a3a2b19bb6df33475b2fc1712dfe09b744.tar.gz |
clarify -F help text a bit
Diffstat (limited to 'client')
-rw-r--r-- | client/mysqldump.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/client/mysqldump.c b/client/mysqldump.c index 6078a1e9dc0..34f9b7998d7 100644 --- a/client/mysqldump.c +++ b/client/mysqldump.c @@ -154,7 +154,10 @@ static struct my_option my_long_options[] = {"first-slave", 'x', "Locks all tables across all databases.", (gptr*) &opt_first_slave, (gptr*) &opt_first_slave, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0}, - {"flush-logs", 'F', "Flush logs file in server before starting dump. Note that if you use this option in combination with the --all-databases (or -A) option, the logs will be flushed for each database dumped.", + {"flush-logs", 'F', "Flush logs file in server before starting dump. " + "Note that if you dump many databases at once (using the option " + "--databases= or --all-databases), the logs will be flushed for " + "each database dumped.", (gptr*) &flush_logs, (gptr*) &flush_logs, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0}, {"force", 'f', "Continue even if we get an sql-error.", |