1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

MDEV-9868 Altering a partitioned table comment does a full copy

let handler::check_if_supported_inplace_alter()
(that detects frm-only changes) to work for partitioned
tables too.
This commit is contained in:
Sergei Golubchik
2016-04-22 08:25:36 +02:00
parent 97728e107a
commit b233b15ccd
3 changed files with 12 additions and 4 deletions

View File

@@ -4209,6 +4209,7 @@ handler::check_if_supported_inplace_alter(TABLE *altered_table,
Alter_inplace_info::ALTER_COLUMN_DEFAULT |
Alter_inplace_info::ALTER_COLUMN_OPTION |
Alter_inplace_info::CHANGE_CREATE_OPTION |
Alter_inplace_info::ALTER_PARTITIONED |
Alter_inplace_info::ALTER_RENAME;
/* Is there at least one operation that requires copy algorithm? */