diff options
author | unknown <sasha@mysql.sashanet.com> | 2001-10-05 13:18:18 -0600 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2001-10-05 13:18:18 -0600 |
commit | 9def70036f82bc3d9338b1584226451bbe88ab96 (patch) | |
tree | e86eb32a57800dd314cb337a50b592f4d440331b /mysql-test/t/rpl000001.test | |
parent | 80f52d455182c1f7997b69dca335e1149224c32e (diff) | |
download | mariadb-git-9def70036f82bc3d9338b1584226451bbe88ab96.tar.gz |
fixed crash on slave when master aborts a query that has % in it.
mysql-test/t/rpl000001.test:
test for coredump on slave while trying to print aborted query
sql/slave.cc:
do not coredump printing aborted query if it has % in it.
BitKeeper/etc/logging_ok:
Logging to logging@openlogging.org accepted
Diffstat (limited to 'mysql-test/t/rpl000001.test')
-rw-r--r-- | mysql-test/t/rpl000001.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/rpl000001.test b/mysql-test/t/rpl000001.test index 54882d7bd43..113a9637dac 100644 --- a/mysql-test/t/rpl000001.test +++ b/mysql-test/t/rpl000001.test @@ -42,10 +42,10 @@ save_master_pos; connection master1; #avoid generating result create temporary table t1_temp(n int); -insert into t1_temp select get_lock('crash_lock', 1) from t2; +insert into t1_temp select get_lock('crash_lock%20C', 1) from t2; connection master; -send update t1 set n = n + get_lock('crash_lock', 2); +send update t1 set n = n + get_lock('crash_lock%20C', 2); connection master1; sleep 2; select (@id := id) - id from t2; |