diff options
Diffstat (limited to 'mysql-test/suite/rpl/r/rpl_stm_sp.result')
-rw-r--r-- | mysql-test/suite/rpl/r/rpl_stm_sp.result | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/mysql-test/suite/rpl/r/rpl_stm_sp.result b/mysql-test/suite/rpl/r/rpl_stm_sp.result new file mode 100644 index 00000000..4e2d4c80 --- /dev/null +++ b/mysql-test/suite/rpl/r/rpl_stm_sp.result @@ -0,0 +1,26 @@ +include/master-slave.inc +[connection master] +# +# MDEV-11815 SP variables of temporal data types do not replicate correctly +# +connection master; +CREATE TABLE t1(a INT); +CREATE PROCEDURE p1() +BEGIN +DECLARE a TIME DEFAULT '01:01:01'; +INSERT INTO t1 VALUES (a=10101); +END; +$$ +CALL p1; +SELECT * FROM t1; +a +1 +connection slave; +SELECT * FROM t1; +a +1 +connection master; +DROP TABLE t1; +DROP PROCEDURE p1; +connection slave; +include/rpl_end.inc |