summaryrefslogtreecommitdiff
path: root/man
Commit message (Collapse)AuthorAgeFilesLines
* MDEV-21303 Make executables MariaDB namedRasmus Johansson2020-03-211-3/+3
| | | | | | | | | To change all executables to have a mariadb name I had to: - Do name changes in every CMakeLists.txt that produces executables - CREATE_MARIADB_SYMLINK was removed and GET_SYMLINK added by Wlad to reuse the function in other places also - The scripts/CMakeLists.txt could make use of GET_SYMLINK instead of introducing redundant code, but I thought I'll leave that for next release - A lot of changes to debian/.install and debian/.links files due to swapping of real executable and symlink. I did not however change the name of the manpages, so the real name is still mysql there and mariadb are symlinks. - The Windows part needed a change now when we made the executables mariadb -named. MSI (and ZIP) do not support symlinks and to not break backward compatibility we had to include mysql named binaries also. Done by Wlad
* Add a man page for mytop that is in sourcesOtto Kekäläinen2020-03-102-1/+8
| | | | Related to MDEV-21769.
* Use correct reference in man page linksOtto Kekäläinen2020-03-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | After the '.so' one is supposed to use the directory name, like we have correctly in all old man pages: mysql_client_test_embedded.1:.so man1/mysql_client_test.1 mysql_embedded.1:.so man1/mysql.1 mysqltest_embedded.1:.so man1/mysqltest.1 This change adds the 'man1/' component so the link has the correct format. Actually using man links is a deprecated practice and using symlinks would be better, but that can be fixed in a later commit. From https://www.debian.org/doc/debian-policy/ch-docs.html#manual-pages: > If one man page needs to be accessible via several names it is better > to use a symbolic link than the .so feature Detected via Lintian errors: E: mariadb-server-10.5: bad-so-link-within-manual-page usr/share/man/man1/mariadb-show.1.gz E: mariadb-client-10.5: bad-so-link-within-manual-page usr/share/man/man1/mariadb-binlog.1.gz E: mariadb-client-10.5: bad-so-link-within-manual-page usr/share/man/man1/mariadb-plugin.1.gz Related to MDEV-21769.
* Fix syntax error mysql-test-run in man pageOtto Kekäläinen2020-03-101-12/+2
| | | | | | | | | | | | This fixes errors like: $ LC_ALL=en_US.UTF-8 MANROFFSEQ='' MANWIDTH=80 \ man --warnings -E UTF-8 -l -Tutf8 -Z mysql-test-run.pl.1 > /dev/null troff: <standard input>:246: warning [p 2, 6.0i, div '3tbd1,1', 0.3i]: can't break line troff: <standard input>:275: warning [p 2, 6.0i, div '3tbd6,1', 0.8i]: can't break line Related to MDEV-21769.
* Add missing man pages for myrocks_hotbackupOtto Kekäläinen2020-03-102-4/+86
| | | | Related to MDEV-21769.
* MDEV-21228: mariadb-conv man pageIan Gilfillan2020-03-042-1/+105
|
* Merge branch '10.4' into 10.5Oleksandr Byelkin2020-02-123-258/+6
|\
| * Merge branch '10.3' into 10.4Oleksandr Byelkin2020-02-113-258/+6
| |\
| | * MDEV-14330: After-merge fixMarko Mäkelä2020-01-311-2/+2
| | | | | | | | | | | | | | | | | | The merge commit 5ff66fb0b97fa3f8ecc453c48bac48ceae76bdea accidentally omitted part of commit 07e34cddb66da2e9e4ab5bdd8d52d1a72c2d2e8e.
| | * Merge 10.2 into 10.3Marko Mäkelä2020-01-313-256/+4
| | |\
| | | * Merge 10.1 into 10.2Marko Mäkelä2020-01-311-3/+4
| | | |\
| | | | * MDEV-14330 Move mysqltest.1 man page to appropriate test package from server ↵Daniel Black2020-01-281-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | package Original patch from Daniel Black <daniel@linux.ibm.com>, backported to 10.1.
| | | * | MDEV-14330: move tokudb manpages to right packagesVicențiu Ciorbaru2020-01-283-255/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Move tokuftdump and tokuft_logprint man pages to storage/tokudb. The man pages are now part of tokudb-engine cmake component. This change is mostly for RPM & DEB based packaging generated through CMake & CPack. Debian upstream already handles this change via the custom scripts in debian/
* | | | | Merge 10.4 into 10.5Marko Mäkelä2019-12-161-2/+4
|\ \ \ \ \ | |/ / / /
| * | | | Merge branch '10.3' into 10.4Oleksandr Byelkin2019-12-091-2/+4
| |\ \ \ \ | | |/ / /
| | * | | Merge branch '10.2' into 10.3Oleksandr Byelkin2019-12-041-2/+4
| | |\ \ \ | | | |/ /
| | | * | Merge branch '10.1' into 10.2Oleksandr Byelkin2019-12-031-2/+4
| | | |\ \ | | | | |/
| | | | * Fix the line break warning (groff/lintian).Faustin Lammler2019-12-021-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The lintian Debian tool is complaining about: 'W: mariadb-test: manpage-has-errors-from-man usr/share/man/man1/mysql-test-run.pl.1.gz 246: warning [p 2, 6.0i, div '3tbd1,1', 0.3i]: can't break line' See: https://salsa.debian.org/faust-guest/mariadb-10.3/-/jobs/431900 The following command permits to catch the problematic lines: $ groff -man -Tascii ./mysql-test-run.pl.1 | less Closes #1419
* | | | | MDEV-19887: Document --copy-s3-tables option on mysqldump man pageIan Gilfillan2019-09-121-0/+16
| | | | | | | | | | | | | | | | | | | | Closes PR #1385
* | | | | Merge 10.4 into 10.5Marko Mäkelä2019-08-131-0/+32
|\ \ \ \ \ | |/ / / /
| * | | | MDEV-19847: Update mysqladmin man pageIan Gilfillan2019-07-011-2/+34
| | | | |
* | | | | Switch Perl DBI scripts from DBD::mysql to DBD::MariaDB driverbb-10.5-MDEV-18565Pali2019-07-192-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | Perl DBD::MariaDB driver is available CPAN and is already used in production environment.
* | | | | Update man pages for 10.5Ian Gilfillan2019-07-1557-99/+99
|/ / / /
* | | | MDEV-17592 Create MariaDB named commands/symlinksSergei Golubchik2019-06-171-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | post-merge fixes: * .gitignore * don't put the keyword COMPONENT into ${COMP} anymore * don't alias mytop, but do alias mysql_client_test * don't symlink manpages, use troff aliasing technique instead (symlinked manpages break rpm and out-of-source bintar builds) * move debian to use troff aliased manpages, fix typos in debian files, put aliases in the correct packages, add more aliases to match rpm/bintar packaging
* | | | MDEV-17592 Create MariaDB named commands/symlinksRasmus Johansson2019-06-171-0/+39
| | | |
* | | | Merge 10.3 into 10.4Marko Mäkelä2019-05-291-1/+17
|\ \ \ \ | |/ / /
| * | | Merge 10.2 into 10.3Marko Mäkelä2019-05-291-1/+17
| |\ \ \ | | |/ /
| | * | Merge 10.1 into 10.2Marko Mäkelä2019-05-281-1/+17
| | |\ \ | | | |/
| | | * MDEV-19537: Document mysqlimport option ignore-foreign-keysIan Gilfillan2019-05-211-1/+17
| | | |
* | | | Merge branch '10.3' into 10.4Oleksandr Byelkin2019-05-1944-44/+44
|\ \ \ \ | |/ / /
| * | | Merge 10.2 into 10.3Marko Mäkelä2019-05-1444-44/+44
| |\ \ \ | | |/ /
| | * | Merge 10.1 into 10.2Marko Mäkelä2019-05-1345-45/+45
| | |\ \ | | | |/
| | | * Merge branch '5.5' into 10.1Vicențiu Ciorbaru2019-05-1147-47/+47
| | | |\
| | | | * Update FSF AddressVicențiu Ciorbaru2019-05-1149-49/+49
| | | | | | | | | | | | | | | | | | | | * Update wrong zip-code
* | | | | Merge 10.3 into 10.4Marko Mäkelä2019-04-251-2/+17
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | In is_eits_usable(), we disable an assertion that fails due to MDEV-19334.
| * | | | Merge 10.2 into 10.3Marko Mäkelä2019-04-251-2/+17
| |\ \ \ \ | | |/ / /
| | * | | Merge 10.1 into 10.2Marko Mäkelä2019-04-251-2/+17
| | |\ \ \ | | | |/ /
| | | * | MDEV-19169: Add --defaults-group-suffix option to mysql_install_db man pageIan Gilfillan2019-04-041-2/+17
| | | | |
| | * | | Update 10.2 man pagesIan Gilfillan2019-03-296-6/+6
| | | | |
| * | | | Update 10.3 man pagesIan Gilfillan2019-03-297-7/+7
| | | | |
* | | | | Update 10.4 man pagesIan Gilfillan2019-03-2957-57/+57
| | | | |
* | | | | Merge 10.3 into 10.4Marko Mäkelä2019-03-201-0/+24
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The MDEV-17262 commit 26432e49d37a37d09b862bb49a021e44bdf4789c was skipped. In Galera 4, the implementation would seem to require changes to the streaming replication. In the tests archive.rnd_pos main.profiling, disable_ps_protocol for SHOW STATUS and SHOW PROFILE commands until MDEV-18974 has been fixed.
| * | | | Merge branch '10.2' into 10.3Sergei Golubchik2019-03-171-0/+24
| |\ \ \ \ | | |/ / /
| | * | | Merge branch '10.1' into 10.2Sergei Golubchik2019-03-151-0/+24
| | |\ \ \ | | | |/ /
| | | * | MDEV-18934: Document missing mysqldumpslow sort optionsIan Gilfillan2019-03-151-0/+24
| | | | |
* | | | | Merge 10.3 into 10.4Marko Mäkelä2019-01-243-37/+0
|\ \ \ \ \ | |/ / / /
| * | | | MDEV-17835: Remove wsrep-sst-method=xtrabackupJulius Goryavsky2019-01-223-37/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The second line of changes related to replacing xtrabackup with mariabackup: 1) All unnecessary references to xtrabackup are removed from the documentation, from some comments, from the control files that are used to prepare the packages. 2) Made corrections of the tests from the galera_3nodes suite that mentioned xtrabackup or the old (associated with xtrabackup) version of innobackupex. 3) Fixed flaws in the galera_3nodes mtr suite control scripts, because of which they could not work with mariabackup. 4) Fixed numerous bugs in the SST scripts and in the mtr test files (galera_3nodes mtr suite) that prevented the use of Galera with IPv6 addresses. 5) Fixed flaws in tests for rsync and mysqldump (for galera_3nodes mtr tests suite). These tests were not performed successfully without these fixes. https://jira.mariadb.org/browse/MDEV-17835
* | | | | Merge 10.3 into 10.4Marko Mäkelä2019-01-062-0/+4
|\ \ \ \ \ | |/ / / /
| * | | | MDEV-18064: Packaging is broken for debian-based systemsJulius Goryavsky2018-12-232-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Packaging is broken for debian-based systems after removing xtrabackup scripts. This is due to the fact that links to the scripts are not removed from the installation file (from the debian/mariadb-server-10.3.install). Also in this fix some comments have been added to the documentation, indicating that using xtrabackup[-v2] is an deprecated, therefore user should use mariabackup instead. https://jira.mariadb.org/browse/MDEV-18064
* | | | | my_print_defaults: remove --config-file/extra-fileDaniel Black2018-10-311-4/+3
|/ / / / | | | | | | | | | | | | | | | | | | | | There have been deprecated since before 5.5 Closes #548