diff options
author | unknown <vva@eagle.mysql.r18.ru> | 2004-04-03 02:44:38 +0500 |
---|---|---|
committer | unknown <vva@eagle.mysql.r18.ru> | 2004-04-03 02:44:38 +0500 |
commit | cee153b87a19f2c60916ca62e48c11a42dd8bf9c (patch) | |
tree | 04e49a857e720460475ff9d3941032ffff965c24 /mysql-test/t | |
parent | f2116615bed09a5b2bb6f113ba3ea1beebcb5e54 (diff) | |
download | mariadb-git-cee153b87a19f2c60916ca62e48c11a42dd8bf9c.tar.gz |
made some optimization of last patch for
Bug #2385 "CREATE TABLE LIKE lacks locking on source and destination table"
(in sql_table.cc and mysql-test/t/synchronization.test)
mysql-test/t/synchronization.test:
added sleep to more reliable work
sql/sql_table.cc:
made some optimization of last patch for
Bug #2385 "CREATE TABLE LIKE lacks locking on source and destination table"
in mysql_create_like_table
Diffstat (limited to 'mysql-test/t')
-rw-r--r-- | mysql-test/t/synchronization.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/t/synchronization.test b/mysql-test/t/synchronization.test index 84478cf7445..695e405544a 100644 --- a/mysql-test/t/synchronization.test +++ b/mysql-test/t/synchronization.test @@ -13,6 +13,7 @@ CREATE TABLE t1 (a int); send CREATE TABLE t2 LIKE t1; connection con_to_harm_sleeper; +sleep 1; ALTER TABLE t1 add key(a); connection con_to_sleep; |