diff options
author | Sergei Golubchik <sergii@pisem.net> | 2014-05-30 23:19:26 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2014-05-30 23:19:26 +0200 |
commit | de8cb7a1f3bc38b9cc782886eb17a4e6d1529944 (patch) | |
tree | 7c4126d9cbb2dfb6db042d6481abb60e85d4d695 /scripts | |
parent | d533a64bf3ac25278abc33344213fb39e771a54d (diff) | |
download | mariadb-git-de8cb7a1f3bc38b9cc782886eb17a4e6d1529944.tar.gz |
MDEV-5485 Minor man pages formatting issues
MDEV-6281 Typo in mysql_install_db scripts
and collateral changes:
* remove mysql_tableinfo.1 and references to it (there's no mysql_tableinfo)
* for debian: create manpages for mysqlrepair, mysqlanalyze, mysqloptimize
(as symlinks for mysqlcheck.1, just as executables are symlinks to mysqlcheck)
* remove mysqlmanager.8 and references to it
* correct "very long line" error in mysqladmin.1
* simplify and fix table formatting in mysqlbinlog.1 and mysqldump.1
* fix a typo in the help text in mysql_install_db
* aria_chk: say "for Linux on x86_64", like other tools do
(not "for Linux at x86_64")
* add simple manpages for aria_* utilities
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/mysql_install_db.pl.in | 2 | ||||
-rw-r--r-- | scripts/mysql_install_db.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/mysql_install_db.pl.in b/scripts/mysql_install_db.pl.in index 433a412b115..03b79312156 100644 --- a/scripts/mysql_install_db.pl.in +++ b/scripts/mysql_install_db.pl.in @@ -560,7 +560,7 @@ else "database and look at the grant tables:", "", "shell> $bindir/mysql -u root mysql", - "mysql> show tables", + "mysql> show tables;", "", "Try 'mysqld --help' if you have problems with paths. Using --log", "gives you a log in $opt->{ldata} that may be helpful.", diff --git a/scripts/mysql_install_db.sh b/scripts/mysql_install_db.sh index 6237a6fbedc..fcf264262fd 100644 --- a/scripts/mysql_install_db.sh +++ b/scripts/mysql_install_db.sh @@ -446,7 +446,7 @@ else echo "to connect to the mysql database and look at the grant tables:" echo echo " shell> $bindir/mysql -u root mysql" - echo " mysql> show tables" + echo " mysql> show tables;" echo echo "Try 'mysqld --help' if you have problems with paths. Using" echo "--general-log gives you a log in $ldata that may be helpful." |