summaryrefslogtreecommitdiff
path: root/mysql-test/r/partition_pruning.result
diff options
context:
space:
mode:
authormikael@c-4908e253.1238-1-64736c10.cust.bredbandsbolaget.se <>2006-04-10 13:07:50 -0400
committermikael@c-4908e253.1238-1-64736c10.cust.bredbandsbolaget.se <>2006-04-10 13:07:50 -0400
commit61318c3b32931ff933e8dd8c800318831abef07c (patch)
tree3c823997f8474e37f7014277bbb2332147f86209 /mysql-test/r/partition_pruning.result
parentba5d08f340b951001bdd4c2a92b0344bace538cb (diff)
downloadmariadb-git-61318c3b32931ff933e8dd8c800318831abef07c.tar.gz
BUG*#17946: New test case for already fixed bug (Problem with LIKE searches for partitioned tables)
Added new test case for bug 17946
Diffstat (limited to 'mysql-test/r/partition_pruning.result')
-rw-r--r--mysql-test/r/partition_pruning.result11
1 files changed, 11 insertions, 0 deletions
diff --git a/mysql-test/r/partition_pruning.result b/mysql-test/r/partition_pruning.result
index 8b959cb6a3e..b13f0d55e39 100644
--- a/mysql-test/r/partition_pruning.result
+++ b/mysql-test/r/partition_pruning.result
@@ -659,3 +659,14 @@ explain partitions select count(*) from t1 where s1 < 0 or s1 is null;
id select_type table partitions type possible_keys key key_len ref rows Extra
1 SIMPLE t1 p3 system NULL NULL NULL NULL 1
drop table t1;
+create table t1 (a char(32) primary key)
+partition by key()
+partitions 100;
+insert into t1 values ('na');
+select * from t1;
+a
+na
+select * from t1 where a like 'n%';
+a
+na
+drop table t1;