mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
5.3 merge
This commit is contained in:
@@ -1830,6 +1830,15 @@ REPAIR TABLE m1;
|
||||
#
|
||||
DROP TABLE m1, t1;
|
||||
|
||||
#
|
||||
# MDEV-5266 MySQL:57657 - Temporary MERGE table with temporary underlying is broken by ALTER
|
||||
#
|
||||
create temporary table t1_temp(i int);
|
||||
create temporary table tm_temp_temp (i int) engine=merge union=(t1_temp) insert_method=last;
|
||||
alter table tm_temp_temp insert_method=first;
|
||||
check table tm_temp_temp;
|
||||
drop temporary table t1_temp, tm_temp_temp;
|
||||
|
||||
--echo End of 5.1 tests
|
||||
|
||||
--echo #
|
||||
|
||||
Reference in New Issue
Block a user