Navigation Menu

Skip to content

Commit

Permalink
flush status to have stable results in status variable tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
fdiary committed Nov 15, 2011
1 parent f32b220 commit a847df8
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions test/sql/suite/groonga_storage/r/count_performance.result
@@ -1,4 +1,5 @@
drop table if exists t1, t2, t3;
flush status;
create table t1 (c1 int primary key, c2 int, c3 text, key idx1(c2), fulltext index ft(c3));
insert into t1 values(1,10,"aa ii uu ee oo");
insert into t1 values(2,20,"ka ki ku ke ko");
Expand Down
@@ -1,4 +1,5 @@
drop table if exists t1;
flush status;
create table t1 (c1 int primary key, c2 int, c3 text, _id int, key idx1(c2), fulltext index ft(c3));
insert into t1 values(1,10,"aa ii uu ee oo",null);
insert into t1 values(2,20,"ka ki ku ke ko",null);
Expand Down
1 change: 1 addition & 0 deletions test/sql/suite/groonga_storage/t/count_performance.test
Expand Up @@ -20,6 +20,7 @@
drop table if exists t1, t2, t3;
--enable_warnings

flush status;
create table t1 (c1 int primary key, c2 int, c3 text, key idx1(c2), fulltext index ft(c3));
insert into t1 values(1,10,"aa ii uu ee oo");
insert into t1 values(2,20,"ka ki ku ke ko");
Expand Down
Expand Up @@ -20,6 +20,7 @@
drop table if exists t1;
--enable_warnings

flush status;
create table t1 (c1 int primary key, c2 int, c3 text, _id int, key idx1(c2), fulltext index ft(c3));
insert into t1 values(1,10,"aa ii uu ee oo",null);
insert into t1 values(2,20,"ka ki ku ke ko",null);
Expand Down
@@ -1,4 +1,5 @@
drop table if exists t1;
flush status;
create table t1 (
c1 int primary key,
c2 int,
Expand Down
Expand Up @@ -21,6 +21,7 @@
drop table if exists t1;
--enable_warnings

flush status;
create table t1 (
c1 int primary key,
c2 int,
Expand Down

0 comments on commit a847df8

Please sign in to comment.