mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
ad126d90e0
This includes both code and test cases.
25 lines
887 B
Text
25 lines
887 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 FUNCTION test.f1;
|
|
DROP TABLE IF EXISTS test.t1;
|
|
DROP TABLE IF EXISTS test.t2;
|
|
CREATE TABLE test.t1 (a INT NOT NULL AUTO_INCREMENT, t TIMESTAMP, t2 TIMESTAMP, PRIMARY KEY(a));
|
|
CREATE TABLE test.t2 (a INT NOT NULL AUTO_INCREMENT, t TIMESTAMP, t2 TIMESTAMP, PRIMARY KEY(a));
|
|
create function test.f1() RETURNS TIMESTAMP
|
|
BEGIN
|
|
UPDATE test.t1 SET t = CURRENT_TIMESTAMP;
|
|
RETURN CURRENT_TIMESTAMP;
|
|
END//
|
|
INSERT INTO test.t2 VALUES (null,f1(),CURRENT_TIMESTAMP);
|
|
SET TIMESTAMP=2;
|
|
INSERT INTO test.t2 VALUES (null,f1(),CURRENT_TIMESTAMP);
|
|
SET TIMESTAMP=1;
|
|
INSERT INTO test.t2 VALUES (null,f1(),CURRENT_TIMESTAMP);
|
|
SET TIMESTAMP=333300000;
|
|
INSERT INTO test.t2 VALUES (null,f1(),CURRENT_TIMESTAMP);
|
|
DROP FUNCTION test.f1;
|
|
DROP TABLE test.t1;
|