diff options
author | Sergei Petrunia <psergey@askmonty.org> | 2014-06-03 17:59:01 +0400 |
---|---|---|
committer | Sergei Petrunia <psergey@askmonty.org> | 2014-06-03 17:59:01 +0400 |
commit | 5621aa3230a60c97111f52c03dc31ce7b57d70d6 (patch) | |
tree | 6e90f93bc438ae0a97757dbca19ddf05665a431a /mysql-test | |
parent | 0925ab9d88f4328810d25392333a4cac11c6e694 (diff) | |
download | mariadb-git-5621aa3230a60c97111f52c03dc31ce7b57d70d6.tar.gz |
MDEV-406: ANALYZE $stmt
- Support tracking for UNIONs, temporary-table based ORDER BYs,
and both.
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/r/ps.result | 1 | ||||
-rw-r--r-- | mysql-test/t/ps.test | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/r/ps.result b/mysql-test/r/ps.result index 31fcea528aa..3217a10ed6d 100644 --- a/mysql-test/r/ps.result +++ b/mysql-test/r/ps.result @@ -1,5 +1,6 @@ call mtr.add_suppression('Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT.'); drop table if exists t1,t2,t3,t4; +drop database if exists mysqltest1; drop database if exists client_test_db; create table t1 ( diff --git a/mysql-test/t/ps.test b/mysql-test/t/ps.test index 0233b2e428b..491594a3045 100644 --- a/mysql-test/t/ps.test +++ b/mysql-test/t/ps.test @@ -7,6 +7,7 @@ call mtr.add_suppression('Unsafe statement written to the binary log using state --disable_warnings drop table if exists t1,t2,t3,t4; +drop database if exists mysqltest1; # Avoid wrong warnings if mysql_client_test fails drop database if exists client_test_db; --enable_warnings |