mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
315f5d27c4
for Bug #2385 CREATE TABLE LIKE lacks locking on source and destination table BitKeeper/deleted/.del-synchronization-master.opt~265be23ead00949: Delete: mysql-test/t/synchronization-master.opt BitKeeper/deleted/.del-have_debug.require~d981522532c711b2: Delete: mysql-test/r/have_debug.require BitKeeper/deleted/.del-have_debug.inc~f4dc5160b9912226: Delete: mysql-test/include/have_debug.inc mysql-test/r/synchronization.result: fixed the test for Bug #2385 CREATE TABLE LIKE lacks locking on source and destination table mysql-test/t/synchronization.test: fixed the test for Bug #2385 CREATE TABLE LIKE lacks locking on source and destination table sql/sql_table.cc: deleted test sleep from mysql_create_like_table
33 lines
668 B
Text
33 lines
668 B
Text
#
|
|
# Test for Bug #2385 CREATE TABLE LIKE lacks locking on source and destination table
|
|
#
|
|
|
|
connect (con1,localhost,root,,);
|
|
connect (con2,localhost,root,,);
|
|
|
|
# locking of source:
|
|
|
|
CREATE TABLE t1 (x1 int);
|
|
let $1= 10;
|
|
while ($1)
|
|
{
|
|
connection con1;
|
|
send ALTER TABLE t1 CHANGE x1 x2 int;
|
|
connection con2;
|
|
CREATE TABLE t2 LIKE t1;
|
|
replace_result x1 xx x2 xx;
|
|
SHOW CREATE TABLE t2;
|
|
DROP TABLE t2;
|
|
connection con1;
|
|
reap;
|
|
send ALTER TABLE t1 CHANGE x2 x1 int;
|
|
connection con2;
|
|
CREATE TABLE t2 LIKE t1;
|
|
replace_result x1 xx x2 xx;
|
|
SHOW CREATE TABLE t2;
|
|
DROP TABLE t2;
|
|
connection con1;
|
|
reap;
|
|
dec $1;
|
|
}
|
|
DROP TABLE t1;
|