1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Bug#37117875 test case

This commit is contained in:
Sergei Golubchik
2025-07-24 15:46:45 +02:00
parent 1735807448
commit 5fa5ee3edb
2 changed files with 26 additions and 0 deletions

View File

@@ -80,5 +80,17 @@ sync_slave_with_master;
select * from t1;
connection master;
#
# Bug#37117875 Binlog record error when delimiter is set to other symbols
#
delimiter //;
--error ER_PARSE_ERROR
insert t1 values /*! (100);insert t1 values */ (200) //
delimiter ;//
select * from t1;
sync_slave_with_master;
select * from t1;
connection master;
DROP TABLE t1;
--source include/rpl_end.inc