mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 22:12:30 +01:00
63c9bb320f
Set wrong sql_mode when creating a procedure. So that the sql_mode can't be writen into binary log correctly. Restore the current session sql_mode right before generating the binlog event when creating a procedure. mysql-test/suite/binlog/r/binlog_sql_mode.result: Test result mysql-test/suite/binlog/t/binlog_sql_mode.test: Test file for sql_mode testing sql/sp.cc: Restore the current session sql_mode right before generating the binlog event.
46 lines
1.1 KiB
Text
46 lines
1.1 KiB
Text
stop slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
reset master;
|
|
reset slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
start slave;
|
|
SET @old_sql_mode= @@global.sql_mode;
|
|
SET @old_binlog_format=@@session.binlog_format;
|
|
SET SESSION sql_mode=8;
|
|
Initialization
|
|
RESET MASTER;
|
|
CREATE TABLE t1 (id INT);
|
|
CREATE PROCEDURE testProc() SELECT * FROM t1;
|
|
CREATE VIEW testView as SELECT * from t1;
|
|
CREATE FUNCTION testFunc()
|
|
RETURNS INT
|
|
BEGIN
|
|
return 1;
|
|
END;|
|
|
CREATE TRIGGER testTrig BEFORE INSERT ON t1
|
|
FOR EACH ROW BEGIN
|
|
UPDATE t1 SET id = id +1;
|
|
END;|
|
|
CREATE EVENT testEvent ON SCHEDULE
|
|
EVERY 1 DAY
|
|
DO
|
|
BEGIN
|
|
UPDATE t1 SET id = id +1;
|
|
END;|
|
|
Chceck Result
|
|
select
|
|
(@a:=load_file("MYSQLTEST_VARDIR/tmp/mysqlbinlog_bug39526.binlog"))
|
|
is not null;
|
|
(@a:=load_file("MYSQLTEST_VARDIR/tmp/mysqlbinlog_bug39526.binlog"))
|
|
is not null
|
|
1
|
|
*** String sql_mode=0 is found: 0 ***
|
|
Clean Up
|
|
DROP PROCEDURE testProc;
|
|
DROP FUNCTION testFunc;
|
|
DROP TRIGGER testTrig;
|
|
DROP EVENT testEvent;
|
|
DROP VIEW testView;
|
|
DROP TABLE t1;
|
|
SET @@global.sql_mode= @old_sql_mode;
|
|
SET @@session.binlog_format=@old_binlog_format;
|