diff options
author | unknown <jcole@tetra.spaceapes.com> | 2001-02-20 20:39:48 -0600 |
---|---|---|
committer | unknown <jcole@tetra.spaceapes.com> | 2001-02-20 20:39:48 -0600 |
commit | 81c92d5a332097499d48109af91d84bc4f25b17a (patch) | |
tree | c432873bae5cbc84715d64035dbe3fe5e2146ae0 /client/mysql.cc | |
parent | a78f9ad0843b979be13d9e8e48d44319a049b361 (diff) | |
download | mariadb-git-81c92d5a332097499d48109af91d84bc4f25b17a.tar.gz |
Cleanups...
Diffstat (limited to 'client/mysql.cc')
-rw-r--r-- | client/mysql.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/client/mysql.cc b/client/mysql.cc index 2c020255559..d140e524094 100644 --- a/client/mysql.cc +++ b/client/mysql.cc @@ -2212,14 +2212,14 @@ com_status(String *buffer __attribute__((unused)), if (safe_updates) { vidattr(A_BOLD); - tee_fprintf(stdout, "\nNote that we are running in safe_update_mode:\n"); + tee_fprintf(stdout, "\nNote that you are running in safe_update_mode:\n"); vidattr(A_NORMAL); tee_fprintf(stdout, "\ -UPDATE and DELETE that doesn't use a key in the WHERE clause are not allowed\n\ -(One can force UPDATE/DELETE by adding LIMIT # at the end of the command)\n\ -SELECT has an automatic 'LIMIT %lu' if LIMIT is not used\n\ +UPDATEs and DELETEs that don't use a key in the WHERE clause are not allowed.\n\ +(One can force an UPDATE/DELETE by adding LIMIT # at the end of the command.)\n\ +SELECT has an automatic 'LIMIT %lu' if LIMIT is not used.\n\ Max number of examined row combination in a join is set to: %lu\n\n", -select_limit,max_join_size); +select_limit, max_join_size); } tee_puts("--------------\n", stdout); return 0; |