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

Post-merge test case for Bug 31409

This commit is contained in:
davi@moksha.com.br
2007-10-10 21:39:22 -03:00
parent 9f088628eb
commit 4515ccf7c0
3 changed files with 69 additions and 0 deletions

View File

@@ -554,6 +554,24 @@ c1
2
handler t1 read next;
c1
1
handler t1 close;
handler t2 close;
drop table t1,t2;
drop table if exists t1,t2;
create table t1 (c1 int);
connection: default
handler t1 open;
handler t1 read first;
c1
connection: flush
rename table t1 to t2;;
connection: default
handler t2 open;
handler t2 read first;
c1
handler t1 read next;
ERROR 42S02: Table 'test.t1' doesn't exist
handler t1 close;
handler t2 close;
drop table t2;