summaryrefslogtreecommitdiff
path: root/mysql-test/t/sp_trans_log.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/t/sp_trans_log.test')
-rw-r--r--mysql-test/t/sp_trans_log.test12
1 files changed, 6 insertions, 6 deletions
diff --git a/mysql-test/t/sp_trans_log.test b/mysql-test/t/sp_trans_log.test
index 8eb1fcb98fa..deea6e6d9b6 100644
--- a/mysql-test/t/sp_trans_log.test
+++ b/mysql-test/t/sp_trans_log.test
@@ -30,18 +30,18 @@ begin
select count(*) from t1 into @a;
return @a;
end|
+delimiter ;|
-reset master|
+reset master;
--error ER_DUP_ENTRY
-insert into t2 values (bug23333(),1)|
+insert into t2 values (bug23333(),1);
# the following must show there are events after the query
# the binlog_limit is used to hide the differences between the mixed
# and row logging formats after BUG#53259
-let $binlog_limit= 0, 4|
-source include/show_binlog_events.inc|
-select count(*),@a from t1 /* must be 1,1 */|
+let $binlog_limit= 0, 4;
+source include/show_binlog_events.inc;
+select count(*),@a from t1 /* must be 1,1 */;
-delimiter ;|
# clean-up