mirror of
https://github.com/MariaDB/server.git
synced 2025-02-09 23:24:11 +01:00
9 lines
398 B
Text
9 lines
398 B
Text
--source include/have_partition.inc
|
|
|
|
#
|
|
# MDEV-17627 Assertion `inited==RND' failed in handler::ha_rnd_end() upon actions on partitioned table with FTS
|
|
#
|
|
create table t1 (i int, f1 varchar(512), f2 varchar(512), fulltext (f1)) engine=myisam partition by hash (i);
|
|
select * from t1 where match (f1) against ('foo');
|
|
select * from t1 where match (f2) against ('bar' in boolean mode) ;
|
|
drop table t1;
|