summaryrefslogtreecommitdiff
path: root/man
Commit message (Collapse)AuthorAgeFilesLines
* Update mysqlbinlog man page with --table optionIan Gilfillan2021-04-141-2/+19
|
* MDEV-20939: Race condition between mysqldump import and InnoDB persistentDaniel Black2021-01-251-2/+2
| | | | Update mysqldump man page for --system={stats,timezones}
* MDEV-24557: Logical dump of MySQL users via MariaDB's mariadb-dump generates ↵Daniel Black2021-01-221-2/+1
| | | | | | invalid commands Clarified working contributed by Vicentiu
* man/mysqldump.1: typos INSERT INFO -> INTODaniel Black2021-01-221-2/+2
|
* MDEV-23630: mysqldump logically dump system table informationDaniel Black2020-11-011-9/+108
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add --system={all, users, plugins, udfs, servers, stats, timezones} This will dump system information from the server in a logical form like: * CREATE USER * GRANT * SET DEFAULT ROLE * CREATE ROLE * CREATE SERVER * INSTALL PLUGIN * CREATE FUNCTION "stats" is the innodb statistics tables or EITS and these are dumped as INSERT/REPLACE INTO statements without recreating the table. "timezones" is the collection of timezone tables which are important to transfer to generate identical results on restoration. Two other options have an effect on the SQL generated by --system=all. These are mutually exclusive of each other. * --replace * --insert-ignore --replace will include "OR REPLACE" into the logical form like: * CREATE OR REPLACE USER ... * DROP ROLE IF EXISTS (MySQL-8.0+) * CREATE OR REPLACE ROLE ... * UNINSTALL PLUGIN IF EXISTS (10.4+) ... (before INSTALL PLUGIN) * DROP FUNCTION IF EXISTS (MySQL-5.7+) * CREATE OR REPLACE [AGGREGATE] FUNCTION * CREATE OR REPLACE SERVER --insert-ignore uses the construct " IF NOT EXISTS" where supported in the logical syntax. 'CREATE OR REPLACE USER' includes protection against being run as the same user that is importing the mysqldump. Includes experimental support for dumping mysql-5.7/8.0 system tables and exporting logical SQL compatible with MySQL. Updates mysqldump man page, including this information and (removing obsolute bug reference) Reviewed-by: anel@mariadb.org
* Merge 10.1 into 10.2Marko Mäkelä2020-10-211-13/+13
|\
| * mysqlimport manpage - s/mysqldump/mysqlimport/gunki2020-10-141-13/+13
| | | | | | | | | | | | | | Closes PR #1672 - Note there are some legacy format not visible when invoking `man` Reviewed by: Ian Gilfillan, Anel Husakovic
* | Merge branch '10.1' into 10.2Oleksandr Byelkin2020-08-021-1/+3
|\ \ | |/
| * MDEV-15207: mysql_upgrade cannot create file mysql_upgrade_infoIan Gilfillan2020-07-231-1/+3
| |
* | 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 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
* | 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 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.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
| | |
* | | Merge branch '10.1' into 10.2Sergei Golubchik2019-03-151-0/+24
|\ \ \ | |/ /
| * | MDEV-18934: Document missing mysqldumpslow sort optionsIan Gilfillan2019-03-151-0/+24
| | |
* | | Fix BB failure: file INSTALL cannot find ... man/tokuft_logdump.1.Sergei Petrunia2018-09-011-1/+1
| | | | | | | | | | | | | | | Remove the mismatch betwen list of man pages in CMakeLists.txt and actual files.
* | | Merge 10.1 into 10.2Marko Mäkelä2018-08-318-5/+72
|\ \ \ | |/ /
| * | MDEV-14927: Missing man pagesIan Gilfillan2018-08-288-5/+72
| | |
* | | MDEV-14927: Missing man pagesIan Gilfillan2018-08-292-1/+18
| | |
* | | Merge 10.1 into 10.2, with some MDEV-14799 fixupsmariadb-10.2.12Marko Mäkelä2018-01-031-2/+184
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | trx_undo_page_report_modify(): For SPATIAL INDEX, keep logging updated off-page columns twice, so that the minimum bounding rectangle (MBR) will be logged. Avoiding the redundant logging would require larger changes to the undo log format. row_build_index_entry_low(): Handle SPATIAL_UNKNOWN more robustly, by refusing to purge the record from the spatial index. We can get this code when processing old undo log from 10.2.10 or 10.2.11 (the releases affected by MDEV-14799, which was a regression from MDEV-14051).
| * | Merge 10.0 into 10.1Marko Mäkelä2018-01-021-2/+184
| |\ \
| | * | Update mysqladmin man pageIan Gilfillan2017-12-281-2/+184
| | | |
* | | | Merge 10.1 into 10.2Marko Mäkelä2017-12-141-2/+1
|\ \ \ \ | |/ / /
| * | | Merge 10.0 into 10.1Marko Mäkelä2017-12-121-2/+1
| |\ \ \ | | |/ /
| | * | mysql_uprade --help and man page fixesIan Gilfillan2017-11-221-2/+1
| | | |
* | | | Merge branch '10.1' into 10.2Sergei Golubchik2017-05-091-2/+22
|\ \ \ \ | |/ / / | | | | | | | | | | | | Revert commit db0917f68f, because the fix for MDEV-12696 is coming from 5.5 and 10.1 in this merge.
| * | | galera_new_cluster man page and sh typo=Ian Gilfillan2017-05-091-3/+23
| | | |
* | | | MDEV-12704: Document --add-drop-trigger option in mysqldump man page=Ian Gilfillan2017-05-061-0/+19
| | | |
* | | | Merge 10.1 into 10.2Marko Mäkelä2017-04-283-2/+34
|\ \ \ \ | |/ / /
| * | | MDEV-11964 my_safe_process, tokuft_logdump stub man pages=Ian Gilfillan2017-04-193-2/+34
| | | |
* | | | 10.2 man pages=Ian Gilfillan2017-04-0953-53/+69
| | | |
* | | | Merge branch '10.1' into 10.2Sergei Golubchik2017-03-3012-1/+402
|\ \ \ \ | |/ / /
| * | | MDEV-11964 Add more stub missing man pages=Ian Gilfillan2017-03-163-1/+37
| | | |
| * | | MDEV-11964 Add missing stub manpagesiangilfillan2017-03-108-0/+353
| | | |
| * | | Minor wording fix in mysqladmin man pageiangilfillan2017-03-081-1/+1
| | | |
| * | | Merge 10.0 into 10.1Marko Mäkelä2017-03-031-0/+12
| |\ \ \ | | |/ /
| | * | MDEV-11610: Add --local to mysqladminDaniel Black2017-03-021-0/+12
| | | |
* | | | Merge branch '10.1' into 10.2Sergei Golubchik2017-02-101-4/+68
|\ \ \ \ | |/ / /
| * | | Merge branch '10.0' into 10.1Vicențiu Ciorbaru2017-01-161-4/+68
| |\ \ \ | | |/ /
| | * | Update mysql_secure_installation man pageiangilfillan2017-01-101-4/+68
| | | |
* | | | Merge branch '10.1' into 10.2Sergei Golubchik2016-12-292-2/+40
|\ \ \ \ | |/ / /