diff options
author | unknown <jani@hynda.(none)> | 2002-08-05 17:08:27 +0300 |
---|---|---|
committer | unknown <jani@hynda.(none)> | 2002-08-05 17:08:27 +0300 |
commit | 7aa290a4ba3ceafd46eaf90e3dc3c445b9c2a25e (patch) | |
tree | 360d85542558122a89f42c9c4c40c006f6332208 /client/mysql.cc | |
parent | a0106bad85f9d4eb7fe7cef1e3446d649669f50b (diff) | |
download | mariadb-git-7aa290a4ba3ceafd46eaf90e3dc3c445b9c2a25e.tar.gz |
Small fixes in mysql and myisamchk.
client/mysql.cc:
Small information add to mysql internal help command.
myisam/myisamchk.c:
Fixed a few typos reported by Paul DuBois.
Diffstat (limited to 'client/mysql.cc')
-rw-r--r-- | client/mysql.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/client/mysql.cc b/client/mysql.cc index 6de6a97a22a..5a517d392f7 100644 --- a/client/mysql.cc +++ b/client/mysql.cc @@ -40,7 +40,7 @@ #include <signal.h> #include <violite.h> -const char *VER= "12.11"; +const char *VER= "12.12"; /* Don't try to make a nice table if the data is too big */ #define MAX_COLUMN_LENGTH 1024 @@ -1319,7 +1319,9 @@ com_help (String *buffer __attribute__((unused)), { reg1 int i; - put_info("\nMySQL commands:",INFO_INFO); + put_info("\nFull documentation of MySQL is available at\nhttp://www.mysql.com/documentation/mysql/bychapter/\n", INFO_INFO); + put_info("For technical support contracts, visit https://order.mysql.com/\n", INFO_INFO); + put_info("MySQL commands:",INFO_INFO); if (!named_cmds) put_info("Note that all text commands must be first on line and end with ';'",INFO_INFO); for (i = 0; commands[i].name; i++) |