diff options
author | unknown <sergefp@mysql.com> | 2005-12-26 10:16:36 +0300 |
---|---|---|
committer | unknown <sergefp@mysql.com> | 2005-12-26 10:16:36 +0300 |
commit | a7c1e3f6bcfd0f3fc3268a8d126b4a6e6fb37afe (patch) | |
tree | 446447513dee6bbc179e19b3245c0020f74de9ed /mysql-test/r/partition_pruning.result | |
parent | fb796ece02f0c3a13ecd71d6e53c36564f7a1d19 (diff) | |
download | mariadb-git-a7c1e3f6bcfd0f3fc3268a8d126b4a6e6fb37afe.tar.gz |
add missing DROP TABLE [IF EXISTS] clauses
Diffstat (limited to 'mysql-test/r/partition_pruning.result')
-rw-r--r-- | mysql-test/r/partition_pruning.result | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/r/partition_pruning.result b/mysql-test/r/partition_pruning.result index de1926bf8b1..a503515e4f1 100644 --- a/mysql-test/r/partition_pruning.result +++ b/mysql-test/r/partition_pruning.result @@ -249,6 +249,7 @@ id select_type table partitions type possible_keys key key_len ref rows Extra explain partitions select * from t3 where (a=2 or b=1) and (a=4 or b=2) ; id select_type table partitions type possible_keys key key_len ref rows Extra 1 SIMPLE t3 p1_sp2,p3_sp1 ALL NULL NULL NULL NULL 3 Using where +drop table t3; create table t1 (a int) partition by hash(a) partitions 2; insert into t1 values (1),(2); explain partitions select * from t1 where a is null; |