summaryrefslogtreecommitdiff
path: root/mysql-test/r/partition_column_prune.result
diff options
context:
space:
mode:
authorMattias Jonsson <mattias.jonsson@oracle.com>2010-09-14 10:56:11 +0200
committerMattias Jonsson <mattias.jonsson@oracle.com>2010-09-14 10:56:11 +0200
commit0b3a1807a1452e3936f9bc84425650bf924799d7 (patch)
tree5997a7fad7e77733494160516bb0c953e9c3ee96 /mysql-test/r/partition_column_prune.result
parent92655149a60bf990e785f39e7c4f3142049bb495 (diff)
parent9d1ed095f5330bf894eac7ed977863e820946d30 (diff)
downloadmariadb-git-0b3a1807a1452e3936f9bc84425650bf924799d7.tar.gz
post push patch, fixing test result for bug#53806/46754.
Diffstat (limited to 'mysql-test/r/partition_column_prune.result')
-rw-r--r--mysql-test/r/partition_column_prune.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/partition_column_prune.result b/mysql-test/r/partition_column_prune.result
index 844429d24a6..95b45f4dea5 100644
--- a/mysql-test/r/partition_column_prune.result
+++ b/mysql-test/r/partition_column_prune.result
@@ -59,8 +59,8 @@ id select_type table partitions type possible_keys key key_len ref rows Extra
1 SIMPLE t1 p01,p02,p03,p11 ALL NULL NULL NULL NULL 8 Using where
explain partitions select * from t1 where a=4;
id select_type table partitions type possible_keys key key_len ref rows Extra
-1 SIMPLE t1 p11,p12,p13,p21 ALL NULL NULL NULL NULL 14 Using where
+1 SIMPLE t1 p11,p12,p13,p21 ALL NULL NULL NULL NULL 8 Using where
explain partitions select * from t1 where a=2 and b < 22;
id select_type table partitions type possible_keys key key_len ref rows Extra
-1 SIMPLE t1 p01,p02,p03 ALL NULL NULL NULL NULL 14 Using where
+1 SIMPLE t1 p01,p02,p03 ALL NULL NULL NULL NULL 6 Using where
drop table t1;