1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Post-merge test case for Bug 21587

This commit is contained in:
davi@moksha.com.br
2007-10-10 19:06:53 -03:00
parent f74f363aac
commit ae462f3e77
3 changed files with 79 additions and 0 deletions

View File

@ -535,3 +535,25 @@ handler t1_alias READ a next where inexistent > 0;
ERROR 42S22: Unknown column 'inexistent' in 'field list'
handler t1_alias close;
drop table t1;
drop table if exists t1,t2;
create table t1 (c1 int);
create table t2 (c1 int);
insert into t1 values (1);
insert into t2 values (2);
connection: default
handler t1 open;
handler t1 read first;
c1
1
connection: flush
flush tables;;
connection: default
handler t2 open;
handler t2 read first;
c1
2
handler t1 read next;
c1
handler t1 close;
handler t2 close;
drop table t1,t2;