mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 03:17:20 +02:00
BUG*#17946: New test case for already fixed bug (Problem with LIKE searches for partitioned tables)
Added new test case for bug 17946 mysql-test/r/partition_pruning.result: Added new test case for bug 17946 mysql-test/t/partition_pruning.test: Added new test case for bug 17946
This commit is contained in:
parent
a514095a5d
commit
4e1682ab15
2 changed files with 23 additions and 0 deletions
|
|
@ -554,3 +554,15 @@ drop table t1;
|
|||
|
||||
# No tests for NULLs in RANGE(monotonic_expr()) - they depend on BUG#15447
|
||||
# being fixed.
|
||||
|
||||
#
|
||||
#BUG 17946 Like searches fail with partitioning
|
||||
#
|
||||
create table t1 (a char(32) primary key)
|
||||
partition by key()
|
||||
partitions 100;
|
||||
insert into t1 values ('na');
|
||||
select * from t1;
|
||||
select * from t1 where a like 'n%';
|
||||
drop table t1;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue