mariadb/mysql-test/r/binlog_unsafe.result
gshchepa/uchum@gleb.loc 92eb485fe2 Many files:
Post-merge fix.
2007-08-03 13:07:37 +05:00

13 lines
430 B
Text

SET BINLOG_FORMAT=STATEMENT;
CREATE TABLE t1 (a CHAR(40));
CREATE TABLE t2 (a INT AUTO_INCREMENT PRIMARY KEY);
CREATE TABLE t3 (b INT AUTO_INCREMENT PRIMARY KEY);
CREATE VIEW v1(a,b) AS SELECT a,b FROM t2,t3;
INSERT INTO t1 SELECT UUID();
Warnings:
Warning 1590 Statement is not safe to log in statement format.
SHOW WARNINGS;
Level Warning
Code 1590
Message Statement is not safe to log in statement format.
DROP TABLE t1,t2,t3;