summaryrefslogtreecommitdiff
path: root/mysql-test/t/bdb_cache.test
diff options
context:
space:
mode:
authorunknown <serg@serg.mylan>2005-06-16 10:09:05 +0200
committerunknown <serg@serg.mylan>2005-06-16 10:09:05 +0200
commit2074572171104b30ab6c51cd1e756c001c90b72c (patch)
treecfef5c9f641799db0cbdf907a51b0e523ca969bc /mysql-test/t/bdb_cache.test
parent9fb9133f2c1f0524ddbb174c27621ac47fe436b2 (diff)
downloadmariadb-git-2074572171104b30ab6c51cd1e756c001c90b72c.tar.gz
fix test results - Bug #11328
mysql-test/r/bdb_cache.result: fix test results mysql-test/t/bdb_cache.test: fix test results
Diffstat (limited to 'mysql-test/t/bdb_cache.test')
-rw-r--r--mysql-test/t/bdb_cache.test4
1 files changed, 1 insertions, 3 deletions
diff --git a/mysql-test/t/bdb_cache.test b/mysql-test/t/bdb_cache.test
index 0082c83faff..401456711ac 100644
--- a/mysql-test/t/bdb_cache.test
+++ b/mysql-test/t/bdb_cache.test
@@ -14,15 +14,13 @@ insert into t1 values (1),(2),(3);
select * from t1;
show status like "Qcache_queries_in_cache";
drop table t1;
-commit;
set autocommit=1;
-begin;
create table t1 (a int not null) engine=bdb;
+begin;
insert into t1 values (1),(2),(3);
select * from t1;
show status like "Qcache_queries_in_cache";
drop table t1;
-commit;
create table t1 (a int not null) engine=bdb;
create table t2 (a int not null) engine=bdb;
create table t3 (a int not null) engine=bdb;