Commit e319a049 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 1217839e
...@@ -10,4 +10,4 @@ SHOW WARNINGS; ...@@ -10,4 +10,4 @@ SHOW WARNINGS;
Level Warning Level Warning
Code 1588 Code 1588
Message Statement is not safe to log in statement format. 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; ...@@ -11,6 +11,6 @@ CREATE VIEW v1(a,b) AS SELECT a,b FROM t2,t3;
INSERT INTO t1 SELECT UUID(); INSERT INTO t1 SELECT UUID();
query_vertical SHOW WARNINGS; 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