diff options
author | lars/lthalmann@mysql.com/dl145h.mysql.com <> | 2007-03-31 12:56:03 +0200 |
---|---|---|
committer | lars/lthalmann@mysql.com/dl145h.mysql.com <> | 2007-03-31 12:56:03 +0200 |
commit | dd1ef14cfed497b706ef65d6eca8879953d5b873 (patch) | |
tree | fcac5f850572001fce85c6117db690bbbd3ec0c7 /mysql-test/t/rpl_incident.test | |
parent | 2f0ecd6a14d737094436cb66e2535ff7e1f9b4ec (diff) | |
download | mariadb-git-dd1ef14cfed497b706ef65d6eca8879953d5b873.tar.gz |
Avoiding SESSION with debug, since it does not work in valgrind
Diffstat (limited to 'mysql-test/t/rpl_incident.test')
-rw-r--r-- | mysql-test/t/rpl_incident.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/rpl_incident.test b/mysql-test/t/rpl_incident.test index 9c30d29b6fd..3629848c826 100644 --- a/mysql-test/t/rpl_incident.test +++ b/mysql-test/t/rpl_incident.test @@ -8,12 +8,12 @@ INSERT INTO t1 VALUES (1),(2),(3); SELECT * FROM t1; SET @saved = @@debug; -SET SESSION debug="d,incident_database_resync_on_replace"; +SET GLOBAL debug="d,incident_database_resync_on_replace"; # This will generate an incident log event and store it in the binary # log before the replace statement. REPLACE INTO t1 VALUES (4); -SET SESSION debug=@saved; +SET GLOBAL debug=@saved; --save_master_pos SELECT * FROM t1; |