GLOBAL DEBUG variable does not work

parent 395b3694
...@@ -12,10 +12,7 @@ a ...@@ -12,10 +12,7 @@ a
1 1
2 2
3 3
SET @saved = @@debug;
SET GLOBAL debug="d,incident_database_resync_on_replace";
REPLACE INTO t1 VALUES (4); REPLACE INTO t1 VALUES (4);
SET GLOBAL debug=@saved;
SELECT * FROM t1; SELECT * FROM t1;
a a
1 1
......
--loose-debug=+d,incident_database_resync_on_replace
...@@ -7,13 +7,9 @@ CREATE TABLE t1 (a INT); ...@@ -7,13 +7,9 @@ CREATE TABLE t1 (a INT);
INSERT INTO t1 VALUES (1),(2),(3); INSERT INTO t1 VALUES (1),(2),(3);
SELECT * FROM t1; SELECT * FROM t1;
SET @saved = @@debug;
SET GLOBAL debug="d,incident_database_resync_on_replace";
# This will generate an incident log event and store it in the binary # This will generate an incident log event and store it in the binary
# log before the replace statement. # log before the replace statement.
REPLACE INTO t1 VALUES (4); REPLACE INTO t1 VALUES (4);
SET GLOBAL debug=@saved;
--save_master_pos --save_master_pos
SELECT * FROM t1; SELECT * FROM t1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment