1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Merge branch '10.7' into bb-10.7-release

This commit is contained in:
Oleksandr Byelkin
2022-11-07 18:53:30 +01:00
7 changed files with 117 additions and 45 deletions

View File

@@ -1752,6 +1752,16 @@ show create table t1;
drop tables t1, tp1;
}
--echo #
--echo # MDEV-29841 Partition by system_time can be converted into table but not back
--echo #
create or replace table t (a int) with system versioning
partition by system_time limit 10 partitions 3;
alter table t convert partition p0 to table tp;
--error ER_ONLY_ON_RANGE_LIST_PARTITION
alter table t convert table tp to partition p0;
drop tables t, tp;
--echo #
--echo # End of 10.7 tests
--echo #