mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / mysql-test / suite / rpl / r / rpl_nondeterministic_functions.result
blob0b5673a383cc7bab1390932e2d393b4c308f3478
1 include/master-slave.inc
2 [connection master]
3 CALL mtr.add_suppression('Statement may not be safe to log in statement format.');
4 CREATE TABLE t1 (a VARCHAR(1000));
5 INSERT INTO t1 VALUES (CONNECTION_ID());
6 INSERT INTO t1 VALUES (CONNECTION_ID());
7 INSERT INTO t1 VALUES
8 (CURDATE()),
9 (CURRENT_DATE()),
10 (CURRENT_TIME()),
11 (CURRENT_TIMESTAMP()),
12 (CURTIME()),
13 (LOCALTIME()),
14 (LOCALTIMESTAMP()),
15 (NOW()),
16 (UNIX_TIMESTAMP()),
17 (UTC_DATE()),
18 (UTC_TIME()),
19 (UTC_TIMESTAMP());
20 INSERT INTO t1 VALUES (RAND());
21 INSERT INTO t1 VALUES (LAST_INSERT_ID());
22 include/diff_tables.inc [master:t1, slave:t1]
23 DROP TABLE t1;
24 include/rpl_end.inc