mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 14:54:20 +01:00
17 lines
397 B
Text
17 lines
397 B
Text
|
# Test to check that a warning is generated for unsafe statements
|
||
|
# executed under statement mode logging.
|
||
|
|
||
|
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();
|
||
|
query_vertical SHOW WARNINGS;
|
||
|
|
||
|
DROP TABLE t1;
|
||
|
|
||
|
|