mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
73bf3f02fb
mysql-test/t/rpl_ndb_delete_nowhere.test: new wrapper for NDB engine mysql-test/r/rpl_ndb_delete_nowhere.result: new reults file mysql-test/t/disabled.def: Added test to be diabled mysql-test/t/rpl_delete_no_where.test: Fix typo mysql-test/t/rpl_EE_err.test: Updated wrapper mysql-test/extra/rpl_tests/rpl_trig004.test: Updated mysql-test/t/rpl_row_trig004.test: Updated mysql-test/r/rpl_row_trig004.result: Updated mysql-test/t/rpl_ndb_trig004.test: New wrapper for ndb mysql-test/r/rpl_ndb_trig004.result: New result
30 lines
826 B
Text
30 lines
826 B
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 TRIGGER test.t1_bi_t2;
|
|
DROP TABLE IF EXISTS test.t1;
|
|
DROP TABLE IF EXISTS test.t2;
|
|
CREATE TABLE test.t1 (n MEDIUMINT NOT NULL AUTO_INCREMENT, d FLOAT, PRIMARY KEY(n))ENGINE=NDB;
|
|
CREATE TABLE test.t2 (n MEDIUMINT NOT NULL, f FLOAT, PRIMARY KEY(n))ENGINE=NDB;
|
|
CREATE TRIGGER test.t1_bi_t2 BEFORE INSERT ON test.t2 FOR EACH ROW INSERT INTO test.t1 VALUES (NULL, 1.234)//
|
|
INSERT INTO test.t2 VALUES (1, 0.0);
|
|
INSERT INTO test.t2 VALUES (1, 0.0);
|
|
Got one of the listed errors
|
|
select * from test.t1;
|
|
n d
|
|
1 1.234
|
|
select * from test.t2;
|
|
n f
|
|
1 0
|
|
select * from test.t1;
|
|
n d
|
|
1 1.234
|
|
select * from test.t2;
|
|
n f
|
|
1 0
|
|
DROP TRIGGER test.t1_bi_t2;
|
|
DROP TABLE test.t1;
|
|
DROP TABLE test.t2;
|