summaryrefslogtreecommitdiff
path: root/mysql-test/r/rpl_sp.result
diff options
context:
space:
mode:
authorunknown <thek@kpdesk.mysql.com>2006-11-29 12:57:43 +0100
committerunknown <thek@kpdesk.mysql.com>2006-11-29 12:57:43 +0100
commit8ac71ce7ea4a5ed6eac776c0d3e2e7b20716e4d7 (patch)
tree9d17af7abaa0b93d6a4c505ee0a9490d6aab2900 /mysql-test/r/rpl_sp.result
parent89d106c1a4efad141e7850373335482ad46aeec5 (diff)
parent9a87702b033bc9bab337e716a52532c4e4599057 (diff)
downloadmariadb-git-8ac71ce7ea4a5ed6eac776c0d3e2e7b20716e4d7.tar.gz
Merge kpdesk.mysql.com:/home/thek/dev/bug22043/my50-bug22043
into kpdesk.mysql.com:/home/thek/dev/mysql-5.0-maint sql/sql_parse.cc: Auto merged mysql-test/r/rpl_sp.result: - merged mysql-test/t/rpl_sp.test: -merged
Diffstat (limited to 'mysql-test/r/rpl_sp.result')
-rw-r--r--mysql-test/r/rpl_sp.result25
1 files changed, 25 insertions, 0 deletions
diff --git a/mysql-test/r/rpl_sp.result b/mysql-test/r/rpl_sp.result
index 7f152862373..95191282bc4 100644
--- a/mysql-test/r/rpl_sp.result
+++ b/mysql-test/r/rpl_sp.result
@@ -467,3 +467,28 @@ DROP FUNCTION f1;
drop table t1;
set global log_bin_trust_function_creators=0;
set global log_bin_trust_function_creators=0;
+drop database if exists mysqltest;
+drop database if exists mysqltest2;
+create database mysqltest;
+create database mysqltest2;
+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 8186;
+Log_name Pos Event_type Server_id End_log_pos Info
+master-bin.000001 8186 Query 1 8317 use `test`; CREATE DEFINER=`root`@`localhost` FUNCTION f1() RETURNS INT RETURN 0
+master-bin.000001 8317 Query 1 8397 use `test`; DROP PROCEDURE p1
+master-bin.000001 8397 Query 1 8476 use `test`; DROP FUNCTION f1
+master-bin.000001 8476 Query 1 8552 use `test`; drop table t1
+master-bin.000001 8552 Query 1 8653 drop database if exists mysqltest
+master-bin.000001 8653 Query 1 8756 drop database if exists mysqltest2
+master-bin.000001 8756 Query 1 8849 create database mysqltest
+master-bin.000001 8849 Query 1 8944 create database mysqltest2
+master-bin.000001 8944 Query 1 9041 use `mysqltest2`; create table t ( t integer )
+master-bin.000001 9041 Query 1 9180 use `mysqltest2`; CREATE DEFINER=`root`@`localhost` procedure mysqltest.test() begin end
+master-bin.000001 9180 Query 1 9275 use `mysqltest2`; insert into t values ( 1 )
+create procedure `\\`.test() begin end;
+ERROR 42000: Incorrect database name '\\'
+drop database mysqltest;
+drop database mysqltest2;