Details
-
Bug
-
Status: Closed (View Workflow)
-
Critical
-
Resolution: Fixed
-
10.11.1
-
None
Description
mysqldump --header --tab wraps the dumping SELECT in UNION ALL + ORDER BY. Which means a filesort (try EXPLAIN), that would make mysqldump notably slower on large tables. This is completely unnecessary, because the ordering of table rows is unimportant.
Attachments
Issue Links
- is caused by
-
MDEV-22200 mysqldump client: --tab export with column names header row
-
- Closed
-
- relates to
-
MDEV-12879 Please add support for exporting column headers to CSV
-
- Open
-
The ORDER BY that I implemented on the
MDEV-22200has two purposes:1. By using a temporary dummy binary sorting variable (0 when at the header row, 1 otherwise) it enforces the header row on the top and prevents it from getting messed up somewhere in the middle of the data rows.
2. The ordering of data rows is necessary to enforce compability with the --order-by-primary clause.