mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 19:11:46 +01:00
9916f1c660
Add missing drop view mysql-test/extra/binlog_tests/mix_innodb_myisam_binlog.test: Look for binlog in mysqlds datadir Update path to std-data mysql-test/suite/binlog/r/binlog_row_mix_innodb_myisam.result: Update result mysql-test/suite/binlog/r/binlog_stm_mix_innodb_myisam.result: Update result mysql-test/suite/binlog/r/binlog_unsafe.result: Add missing drop view mysql-test/suite/binlog/t/binlog_unsafe.test: Add missing drop view
14 lines
444 B
Text
14 lines
444 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 1592 Statement is not safe to log in statement format.
|
|
SHOW WARNINGS;
|
|
Level Warning
|
|
Code 1592
|
|
Message Statement is not safe to log in statement format.
|
|
DROP TABLE t1,t2,t3;
|
|
DROP VIEW v1;
|