1
--source include/have_linux.inc
2
--source include/not_valgrind.inc
3
SET SESSION storage_engine=pbxt;
4
connect (con1,localhost,root,,);
5
connect (con2,localhost,root,,);
7
CREATE TABLE t1 (a int primary key);
9
START TRANSACTION WITH CONSISTENT SNAPSHOT;
10
SELECT count(*) from t1;
13
INSERT INTO t1 VALUES (1),(2),(3),(4),(5),(6),(7),(8),(9),(10), (11),(12),(13),(14),(15),(16),(17),(18),(19),(20), (21),(22),(23),(24),(25),(26),(27),(28),(29),(30), (31),(32);
15
select count(*) from t1;
17
INSERT INTO t1 VALUES (33),(34),(35),(36),(37),(38),(39),(40),(41),(42);
19
SELECT count(*) from t1;