2007-05-14 14:45:38 +02:00
|
|
|
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:
|
2007-10-26 22:40:48 +02:00
|
|
|
Warning 1592 Statement is not safe to log in statement format.
|
2007-05-14 14:45:38 +02:00
|
|
|
SHOW WARNINGS;
|
|
|
|
Level Warning
|
2007-10-26 22:40:48 +02:00
|
|
|
Code 1592
|
2007-05-14 14:45:38 +02:00
|
|
|
Message Statement is not safe to log in statement format.
|
2007-06-01 08:54:47 +02:00
|
|
|
DROP TABLE t1,t2,t3;
|