From 250bb75a50696a2f7c3358684e9d25279f84ad46 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 22 Mar 2001 20:04:59 -0700 Subject: fixed bug on re-open of temp tables after FLUSH in the middle of open added flush test case, but had to comment the fun part out because it does not work for some reason - will investigate why. sql/sql_base.cc: fixed bugs on re-open of temp tables after FLUSH in the middle of open --- mysql-test/t/flush.test | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 mysql-test/t/flush.test (limited to 'mysql-test/t') diff --git a/mysql-test/t/flush.test b/mysql-test/t/flush.test new file mode 100644 index 00000000000..750ecdeadda --- /dev/null +++ b/mysql-test/t/flush.test @@ -0,0 +1,12 @@ +connect (con1,localhost,root,,test,0,mysql-master.sock); +connect (con2,localhost,root,,test,0,mysql-master.sock); +connection con1; +drop table if exists t1; +create temporary table t1(n int); +connection con2; +#send flush tables; +connection con1; +insert into t1 values(3); +select * from t1; +connection con2; +#reap; -- cgit v1.2.1