Commit e38dbc2c authored by Rich Prohaska's avatar Rich Prohaska

#4621 move tokudb.lockretry mysql tests to common mysql test dir refs[t:4621]

git-svn-id: file:///svn/mysql/tests/mysql-test@40914 c7de825b-a66e-492c-adef-691d508d4ae1
parent 0491b971
--disable_warnings
DROP TABLE IF EXISTS t1;
--enable_warnings
CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=TOKUDB;
connect (conn1,localhost,root,,);
connection default;
SET AUTOCOMMIT=OFF;
let $i=1000;
while ($i)
{
connection default;
BEGIN;
eval INSERT INTO t1 VALUES ($i);
connection conn1;
send LOCK TABLES t1 WRITE;
connection default;
COMMIT;
connection conn1;
reap;
UNLOCK TABLES;
dec $i;
}
disconnect conn1;
connection default;
DROP TABLE t1;
\ No newline at end of file
--disable_warnings
DROP TABLE IF EXISTS t1;
--enable_warnings
CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=TOKUDB;
connect (conn1,localhost,root,,);
let $i=1000;
while ($i)
{
connection default;
LOCK TABLES t1 WRITE;
connection conn1;
send;
eval INSERT INTO t1 VALUES ($i);
connection default;
UNLOCK TABLES;
connection conn1;
reap;
dec $i;
}
disconnect conn1;
connection default;
DROP TABLE t1;
\ No newline at end of file
--disable_warnings
DROP TABLE IF EXISTS t1;
--enable_warnings
CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=TOKUDB;
connect (conn1,localhost,root,,);
let $i=1000;
while ($i)
{
connection default;
LOCK TABLES t1 WRITE;
eval INSERT INTO t1 VALUES (-$i);
connection conn1;
send;
eval INSERT INTO t1 VALUES ($i);
connection default;
UNLOCK TABLES;
connection conn1;
reap;
dec $i;
}
disconnect conn1;
connection default;
DROP TABLE t1;
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment