summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormkindahl@dl145h.mysql.com <>2008-03-05 14:45:40 +0100
committermkindahl@dl145h.mysql.com <>2008-03-05 14:45:40 +0100
commit51ad2901d49a4b5745147643dae0eaba86dc4025 (patch)
tree4e2bcfcaa34a359e417617ac76ddb546a198dbdc
parent9b54edd28e9aa73f23fa8f0bc2369cf962679ab1 (diff)
downloadmariadb-git-51ad2901d49a4b5745147643dae0eaba86dc4025.tar.gz
Adding missing drop of view last in test.
-rw-r--r--mysql-test/suite/binlog/r/binlog_unsafe.result1
-rw-r--r--mysql-test/suite/binlog/t/binlog_unsafe.test2
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;