summaryrefslogtreecommitdiff
path: root/mysql-test/suite/pbxt/t
diff options
context:
space:
mode:
authorMichael Widenius <monty@askmonty.org>2011-05-05 23:28:42 +0300
committerMichael Widenius <monty@askmonty.org>2011-05-05 23:28:42 +0300
commit5cf6ccd29eb9fbdb1993810424cc48ece8e2ac81 (patch)
tree982d811872258b180914136a9591910b097abf4f /mysql-test/suite/pbxt/t
parentd5caa00161453eb0cd61e3641d4e6783fb385319 (diff)
downloadmariadb-git-5cf6ccd29eb9fbdb1993810424cc48ece8e2ac81.tar.gz
Speed up pbxt.range test a bit
Diffstat (limited to 'mysql-test/suite/pbxt/t')
-rw-r--r--mysql-test/suite/pbxt/t/range.test3
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/suite/pbxt/t/range.test b/mysql-test/suite/pbxt/t/range.test
index 8d02089ee1b..0c0349c49c9 100644
--- a/mysql-test/suite/pbxt/t/range.test
+++ b/mysql-test/suite/pbxt/t/range.test
@@ -322,6 +322,7 @@ create table t2 (
primary key (id),
index uid_index (uid));
+begin;
insert into t1(id, uid, name) values(1, 0, ' ');
insert into t1(uid, name) values(0, ' ');
@@ -375,6 +376,8 @@ insert into t1(uid, name) select uid, name from t2 order by uid;
delete from t2;
insert into t2(id, uid, name) select id, uid, name from t1;
+commit;
+
select count(*) from t1;
select count(*) from t2;