mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
bd7fccb0fd
mysql-test/t/rpl_sp004.test: updated to work with default NDB engine mysql-test/r/rpl_sp004.result: updated to work with default NDB engine mysql-test/extra/rpl_tests/rpl_flsh_tbls.test: Updated to skip when ndb is default mysql-test/t/rpl_multi_engine.test: Results will not match when ndb is default do to myisam table creates and show create mysql-test/t/rpl_row_basic_11bugs.test: Disables for when ndb is default as the show binlog events will cause failure
93 lines
1.5 KiB
Text
93 lines
1.5 KiB
Text
stop slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
reset master;
|
|
reset slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
start slave;
|
|
DROP PROCEDURE IF EXISTS test.p1;
|
|
DROP PROCEDURE IF EXISTS test.p2;
|
|
DROP TABLE IF EXISTS test.t2;
|
|
DROP TABLE IF EXISTS test.t1;
|
|
DROP TABLE IF EXISTS test.t3;
|
|
CREATE PROCEDURE test.p1()
|
|
BEGIN
|
|
CREATE TABLE IF NOT EXISTS test.t1(a INT,PRIMARY KEY(a));
|
|
CREATE TABLE IF NOT EXISTS test.t2(a INT,PRIMARY KEY(a));
|
|
INSERT INTO test.t1 VALUES (4),(2),(1),(3);
|
|
UPDATE test.t1 SET a=a+4 WHERE a=4;
|
|
INSERT INTO test.t2 (a) SELECT t1.a FROM test.t1;
|
|
UPDATE test.t1 SET a=a+4 WHERE a=8;
|
|
CREATE TABLE IF NOT EXISTS test.t3(n MEDIUMINT NOT NULL AUTO_INCREMENT, f FLOAT, d DATETIME, PRIMARY KEY(n));
|
|
END|
|
|
CREATE PROCEDURE test.p2()
|
|
BEGIN
|
|
DROP TABLE IF EXISTS test.t1;
|
|
DROP TABLE IF EXISTS test.t2;
|
|
INSERT INTO test.t3 VALUES(NULL,11111111.233333,NOW());
|
|
END|
|
|
CALL test.p1();
|
|
SELECT * FROM test.t1 ORDER BY a;
|
|
a
|
|
1
|
|
2
|
|
3
|
|
12
|
|
SELECT * FROM test.t2 ORDER BY a;
|
|
a
|
|
1
|
|
2
|
|
3
|
|
8
|
|
SELECT * FROM test.t1 ORDER BY a;
|
|
a
|
|
1
|
|
2
|
|
3
|
|
12
|
|
SELECT * FROM test.t2 ORDER BY a;
|
|
a
|
|
1
|
|
2
|
|
3
|
|
8
|
|
CALL test.p2();
|
|
USE test;
|
|
SHOW TABLES;
|
|
Tables_in_test
|
|
t3
|
|
USE test;
|
|
SHOW TABLES;
|
|
Tables_in_test
|
|
t3
|
|
CALL test.p1();
|
|
Warnings:
|
|
Note 1050 Table 't3' already exists
|
|
SELECT * FROM test.t1 ORDER BY a;
|
|
a
|
|
1
|
|
2
|
|
3
|
|
12
|
|
SELECT * FROM test.t2 ORDER BY a;
|
|
a
|
|
1
|
|
2
|
|
3
|
|
8
|
|
SELECT * FROM test.t1 ORDER BY a;
|
|
a
|
|
1
|
|
2
|
|
3
|
|
12
|
|
SELECT * FROM test.t2 ORDER BY a;
|
|
a
|
|
1
|
|
2
|
|
3
|
|
8
|
|
DROP PROCEDURE IF EXISTS test.p1;
|
|
DROP PROCEDURE IF EXISTS test.p2;
|
|
DROP TABLE IF EXISTS test.t1;
|
|
DROP TABLE IF EXISTS test.t2;
|
|
DROP TABLE IF EXISTS test.t3;
|