summaryrefslogtreecommitdiff
path: root/mysql-test/main/create-big.result
diff options
context:
space:
mode:
authorSergey Vojtovich <svoj@mariadb.org>2018-12-10 21:01:18 +0400
committerSergey Vojtovich <svoj@mariadb.org>2018-12-10 22:59:46 +0400
commit0fcb141fbd32c0e02dbe21ba6b76882dcd204d20 (patch)
tree50874c16fada5b66b73914ae1c3f6fcdca9b8547 /mysql-test/main/create-big.result
parent80491609361f4fd800185f6b5cabc8ee6e319118 (diff)
downloadmariadb-git-0fcb141fbd32c0e02dbe21ba6b76882dcd204d20.tar.gz
Fixed main.create-big failure
After MDEV-17772 table existence check is performed much earlier, so create_table_select_before_check_if_exists debug sync point is not reachable when table exists. Moved debug sync point to appropriate place.
Diffstat (limited to 'mysql-test/main/create-big.result')
-rw-r--r--mysql-test/main/create-big.result12
1 files changed, 6 insertions, 6 deletions
diff --git a/mysql-test/main/create-big.result b/mysql-test/main/create-big.result
index d041419443e..fc29b08ffb8 100644
--- a/mysql-test/main/create-big.result
+++ b/mysql-test/main/create-big.result
@@ -237,11 +237,11 @@ select @a;
@a
0
drop table t1;
-set debug_sync='create_table_select_before_check_if_exists SIGNAL parked WAIT_FOR go';
-create table if not exists t1 select 1 as i;;
+set debug_sync='create_table_before_check_if_exists SIGNAL parked WAIT_FOR go';
+create table if not exists t1 select 1 as i;
connection addconroot1;
set debug_sync='now WAIT_FOR parked';
-drop table t1;;
+drop table t1;
connection addconroot2;
set debug_sync='now SIGNAL go';
connection default;
@@ -249,11 +249,11 @@ connection addconroot1;
connection default;
create table t1 (i int);
set @a:=0;
-set debug_sync='create_table_select_before_check_if_exists SIGNAL parked WAIT_FOR go';
-create table if not exists t1 select 1 as i;;
+set debug_sync='create_table_before_check_if_exists SIGNAL parked WAIT_FOR go';
+create table if not exists t1 select 1 as i;
connection addconroot1;
set debug_sync='now WAIT_FOR parked';
-create trigger t1_bi before insert on t1 for each row set @a:=1;;
+create trigger t1_bi before insert on t1 for each row set @a:=1;
connection addconroot2;
set debug_sync='now SIGNAL go';
connection default;