Modified test case for bug #12517
This commit is contained in:
parent
e0e235c322
commit
668f0e10fa
@ -1,3 +1,4 @@
|
|||||||
|
drop table if exists t1,t2;
|
||||||
show tables;
|
show tables;
|
||||||
Tables_in_mysql
|
Tables_in_mysql
|
||||||
columns_priv
|
columns_priv
|
||||||
@ -65,19 +66,8 @@ show tables;
|
|||||||
Tables_in_test
|
Tables_in_test
|
||||||
delete from mysql.user where user=_binary"test";
|
delete from mysql.user where user=_binary"test";
|
||||||
flush privileges;
|
flush privileges;
|
||||||
use test;
|
|
||||||
drop table if exists t1;
|
|
||||||
Warnings:
|
|
||||||
Note 1051 Unknown table 't1'
|
|
||||||
create table t1 (id integer not null auto_increment primary key);
|
create table t1 (id integer not null auto_increment primary key);
|
||||||
drop table if exists t2;
|
|
||||||
Warnings:
|
|
||||||
Note 1051 Unknown table 't2'
|
|
||||||
create temporary table t2(id integer not null auto_increment primary key);
|
create temporary table t2(id integer not null auto_increment primary key);
|
||||||
set @id := 1;
|
set @id := 1;
|
||||||
delete from t1 where id like @id;
|
delete from t1 where id like @id;
|
||||||
use test;
|
drop table t1;
|
||||||
drop table if exists t2;
|
|
||||||
Warnings:
|
|
||||||
Note 1051 Unknown table 't2'
|
|
||||||
drop table if exists t1;
|
|
||||||
|
@ -6,6 +6,10 @@
|
|||||||
# This test makes no sense with the embedded server
|
# This test makes no sense with the embedded server
|
||||||
--source include/not_embedded.inc
|
--source include/not_embedded.inc
|
||||||
|
|
||||||
|
--disable_warnings
|
||||||
|
drop table if exists t1,t2;
|
||||||
|
--enable_warnings
|
||||||
|
|
||||||
#connect (con1,localhost,root,,"");
|
#connect (con1,localhost,root,,"");
|
||||||
#show tables;
|
#show tables;
|
||||||
connect (con1,localhost,root,,mysql);
|
connect (con1,localhost,root,,mysql);
|
||||||
@ -77,22 +81,18 @@ show tables;
|
|||||||
delete from mysql.user where user=_binary"test";
|
delete from mysql.user where user=_binary"test";
|
||||||
flush privileges;
|
flush privileges;
|
||||||
|
|
||||||
# Test for bug #12517.
|
#
|
||||||
|
# Bug#12517: Clear user variables and replication events before
|
||||||
|
# closing temp tables in thread cleanup.
|
||||||
connect (con2,localhost,root,,test);
|
connect (con2,localhost,root,,test);
|
||||||
connection con2;
|
connection con2;
|
||||||
use test;
|
|
||||||
drop table if exists t1;
|
|
||||||
create table t1 (id integer not null auto_increment primary key);
|
create table t1 (id integer not null auto_increment primary key);
|
||||||
drop table if exists t2;
|
|
||||||
create temporary table t2(id integer not null auto_increment primary key);
|
create temporary table t2(id integer not null auto_increment primary key);
|
||||||
set @id := 1;
|
set @id := 1;
|
||||||
delete from t1 where id like @id;
|
delete from t1 where id like @id;
|
||||||
disconnect con2;
|
disconnect con2;
|
||||||
sleep 5;
|
--sleep 5
|
||||||
connect (con1,localhost,root,,test);
|
connection default;
|
||||||
connection con1;
|
drop table t1;
|
||||||
use test;
|
|
||||||
drop table if exists t2;
|
|
||||||
drop table if exists t1;
|
|
||||||
|
|
||||||
# End of 4.1 tests
|
# End of 4.1 tests
|
||||||
|
Loading…
x
Reference in New Issue
Block a user