diff options
author | mkindahl@dl145h.mysql.com <> | 2008-03-05 14:45:40 +0100 |
---|---|---|
committer | mkindahl@dl145h.mysql.com <> | 2008-03-05 14:45:40 +0100 |
commit | 51ad2901d49a4b5745147643dae0eaba86dc4025 (patch) | |
tree | 4e2bcfcaa34a359e417617ac76ddb546a198dbdc | |
parent | 9b54edd28e9aa73f23fa8f0bc2369cf962679ab1 (diff) | |
download | mariadb-git-51ad2901d49a4b5745147643dae0eaba86dc4025.tar.gz |
Adding missing drop of view last in test.
-rw-r--r-- | mysql-test/suite/binlog/r/binlog_unsafe.result | 1 | ||||
-rw-r--r-- | mysql-test/suite/binlog/t/binlog_unsafe.test | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/suite/binlog/r/binlog_unsafe.result b/mysql-test/suite/binlog/r/binlog_unsafe.result index 47284ed8bc3..8467a18aa6b 100644 --- a/mysql-test/suite/binlog/r/binlog_unsafe.result +++ b/mysql-test/suite/binlog/r/binlog_unsafe.result @@ -11,3 +11,4 @@ Level Warning Code 1592 Message Statement is not safe to log in statement format. DROP TABLE t1,t2,t3; +DROP VIEW v1; diff --git a/mysql-test/suite/binlog/t/binlog_unsafe.test b/mysql-test/suite/binlog/t/binlog_unsafe.test index f34c22dc5f7..fa2a5eac128 100644 --- a/mysql-test/suite/binlog/t/binlog_unsafe.test +++ b/mysql-test/suite/binlog/t/binlog_unsafe.test @@ -14,5 +14,5 @@ INSERT INTO t1 SELECT UUID(); query_vertical SHOW WARNINGS; DROP TABLE t1,t2,t3; - +DROP VIEW v1; |