Commit 6569b4d3 authored by unknown's avatar unknown

Fixing test case binlog_unsafe.


mysql-test/r/binlog_unsafe.result:
  Result change.
mysql-test/t/binlog_unsafe.test:
  Dropping used tables.
parent d7bfc5ce
......@@ -10,4 +10,4 @@ SHOW WARNINGS;
Level Warning
Code 1588
Message Statement is not safe to log in statement format.
DROP TABLE t1;
DROP TABLE t1,t2,t3;
......@@ -11,6 +11,6 @@ CREATE VIEW v1(a,b) AS SELECT a,b FROM t2,t3;
INSERT INTO t1 SELECT UUID();
query_vertical SHOW WARNINGS;
DROP TABLE t1;
DROP TABLE t1,t2,t3;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment