diff options
author | Sergei Golubchik <sergii@pisem.net> | 2013-12-13 13:00:38 +0100 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2013-12-13 13:00:38 +0100 |
commit | e68bccc743ddd5ee9b0e47ff73b57d088f015f17 (patch) | |
tree | f524c15c650c94dd8bab87899b04ae767544b5a2 /mysql-test/r/merge.result | |
parent | ca083a764f14233dfd7f97436629020901bd23a6 (diff) | |
parent | 3ec4296ec413e866c3efabc8dfa94172ad5f7c04 (diff) | |
download | mariadb-git-e68bccc743ddd5ee9b0e47ff73b57d088f015f17.tar.gz |
5.3 merge
Diffstat (limited to 'mysql-test/r/merge.result')
-rw-r--r-- | mysql-test/r/merge.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/merge.result b/mysql-test/r/merge.result index de376dc187d..41ee148cee3 100644 --- a/mysql-test/r/merge.result +++ b/mysql-test/r/merge.result @@ -2394,6 +2394,13 @@ REPAIR TABLE m1; Table Op Msg_type Msg_text test.m1 repair note The storage engine for the table doesn't support repair DROP TABLE m1, t1; +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; +Table Op Msg_type Msg_text +test.tm_temp_temp check status OK +drop temporary table t1_temp, tm_temp_temp; End of 5.1 tests # # MDEV-4277: Crash inside mi_killed_in_mariadb() with myisammrg |