Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.0.11
-
None
-
10.0.20
Description
See also MDEV-8178
Initially mentioned on the mailing list: https://lists.launchpad.net/maria-discuss/msg02496.html
Dataset: salaries table in the employees sample database.
Examples of statements that show progress report on 5.5 and 10.1, but not on 10.0.
ALTER TABLE salaries ENGINE = Innodb; |
ALTER TABLE salaries ADD id INT NULL; |
ALTER TABLE salaries DROP id; |
ALTER TABLE salaries ROW_FORMAT = COMPRESSED; |
It happened somewhere between 10.0.10 and 10.0.11.
For MyISAM, progress is displayed.
Attachments
Issue Links
- relates to
-
MDEV-8471 No progress report for online DDL of InnoDB tables
-
- Closed
-
-
MDEV-29913 Assertion `thd->stmt_arena != thd->progress.arena' failed in thd_progress_init upon bulk load
-
- Closed
-
In 5.5 you can see:
MariaDB [employees]> ALTER TABLE salaries ENGINE = Innodb;
--------------
ALTER TABLE salaries ENGINE = Innodb
--------------
Stage: 1 of 2 'copy to tmp table' 0.808% of stage done
On 10.0, there is no stage output at all.