mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
fix test results - Bug #11328
mysql-test/r/bdb_cache.result: fix test results mysql-test/t/bdb_cache.test: fix test results
This commit is contained in:
@ -12,10 +12,9 @@ show status like "Qcache_queries_in_cache";
|
|||||||
Variable_name Value
|
Variable_name Value
|
||||||
Qcache_queries_in_cache 0
|
Qcache_queries_in_cache 0
|
||||||
drop table t1;
|
drop table t1;
|
||||||
commit;
|
|
||||||
set autocommit=1;
|
set autocommit=1;
|
||||||
begin;
|
|
||||||
create table t1 (a int not null) engine=bdb;
|
create table t1 (a int not null) engine=bdb;
|
||||||
|
begin;
|
||||||
insert into t1 values (1),(2),(3);
|
insert into t1 values (1),(2),(3);
|
||||||
select * from t1;
|
select * from t1;
|
||||||
a
|
a
|
||||||
@ -26,7 +25,6 @@ show status like "Qcache_queries_in_cache";
|
|||||||
Variable_name Value
|
Variable_name Value
|
||||||
Qcache_queries_in_cache 0
|
Qcache_queries_in_cache 0
|
||||||
drop table t1;
|
drop table t1;
|
||||||
commit;
|
|
||||||
create table t1 (a int not null) engine=bdb;
|
create table t1 (a int not null) engine=bdb;
|
||||||
create table t2 (a int not null) engine=bdb;
|
create table t2 (a int not null) engine=bdb;
|
||||||
create table t3 (a int not null) engine=bdb;
|
create table t3 (a int not null) engine=bdb;
|
||||||
|
@ -14,15 +14,13 @@ insert into t1 values (1),(2),(3);
|
|||||||
select * from t1;
|
select * from t1;
|
||||||
show status like "Qcache_queries_in_cache";
|
show status like "Qcache_queries_in_cache";
|
||||||
drop table t1;
|
drop table t1;
|
||||||
commit;
|
|
||||||
set autocommit=1;
|
set autocommit=1;
|
||||||
begin;
|
|
||||||
create table t1 (a int not null) engine=bdb;
|
create table t1 (a int not null) engine=bdb;
|
||||||
|
begin;
|
||||||
insert into t1 values (1),(2),(3);
|
insert into t1 values (1),(2),(3);
|
||||||
select * from t1;
|
select * from t1;
|
||||||
show status like "Qcache_queries_in_cache";
|
show status like "Qcache_queries_in_cache";
|
||||||
drop table t1;
|
drop table t1;
|
||||||
commit;
|
|
||||||
create table t1 (a int not null) engine=bdb;
|
create table t1 (a int not null) engine=bdb;
|
||||||
create table t2 (a int not null) engine=bdb;
|
create table t2 (a int not null) engine=bdb;
|
||||||
create table t3 (a int not null) engine=bdb;
|
create table t3 (a int not null) engine=bdb;
|
||||||
|
Reference in New Issue
Block a user