summaryrefslogtreecommitdiff
path: root/mysql-test/t/rpl_sp.test
diff options
context:
space:
mode:
authorunknown <thek@kpdesk.mysql.com>2006-12-01 17:36:51 +0100
committerunknown <thek@kpdesk.mysql.com>2006-12-01 17:36:51 +0100
commit108107f1f2da113017dc303dff38443d25a62dab (patch)
tree7408ef0844a61578d9cd7d76b66df6dd0f344ade /mysql-test/t/rpl_sp.test
parenta3774e00dc905f68e749c53831e9a0bd3897604e (diff)
downloadmariadb-git-108107f1f2da113017dc303dff38443d25a62dab.tar.gz
Bug#22043 MySQL don't add "USE <DATABASE>" before "DROP PROCEDURE IF EXISTS"
- Merged; updated test case. mysql-test/r/rpl_sp.result: - Merged; updated test case for 5.1 mysql-test/t/rpl_sp.test: - Merged; updated result set for 5.1
Diffstat (limited to 'mysql-test/t/rpl_sp.test')
-rw-r--r--mysql-test/t/rpl_sp.test3
1 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/t/rpl_sp.test b/mysql-test/t/rpl_sp.test
index 2f0d04eff35..3a93a6608cd 100644
--- a/mysql-test/t/rpl_sp.test
+++ b/mysql-test/t/rpl_sp.test
@@ -532,6 +532,7 @@ set global log_bin_trust_function_creators=0;
# Bug22043: MySQL don't add "USE <DATABASE>" before "DROP PROCEDURE IF EXISTS"
#
connection master;
+reset master;
--disable_warnings
drop database if exists mysqltest;
drop database if exists mysqltest2;
@@ -542,7 +543,7 @@ use mysqltest2;
create table t ( t integer );
create procedure mysqltest.test() begin end;
insert into t values ( 1 );
-show binlog events in 'master-bin.000001' from 8657;
+show binlog events in 'master-bin.000001' from 102;
--error ER_BAD_DB_ERROR
create procedure `\\`.test() begin end;
# Clean up