1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

A test case for the bug fix as per PEM's reported bug #118.

Patch is already commited and approved by Sanja ..;o)
This commit is contained in:
unknown
2003-03-20 20:44:56 +02:00
parent 72c8db0709
commit 9307bfe805
2 changed files with 2 additions and 0 deletions

View File

@ -333,4 +333,5 @@ check table t1,t2;
Table Op Msg_type Msg_text Table Op Msg_type Msg_text
test.t1 check status OK test.t1 check status OK
test.t2 check status OK test.t2 check status OK
select max(a) +1, max(a) +2 into @xx,@yy from t1;
drop table t1,t2; drop table t1,t2;

View File

@ -241,5 +241,6 @@ select @@key_buffer_size;
select * from t1 where a=2; select * from t1 where a=2;
select * from t2 where a=3; select * from t2 where a=3;
check table t1,t2; check table t1,t2;
select max(a) +1, max(a) +2 into @xx,@yy from t1;
drop table t1,t2; drop table t1,t2;