mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 03:47:17 +02:00
fixed repair_by_sort FULLTEXT bug
This commit is contained in:
parent
efacfcade0
commit
61c50cf761
3 changed files with 25 additions and 2 deletions
|
|
@ -160,3 +160,15 @@ INSERT INTO t1 VALUES (1,'my small mouse'),(2,'la-la-la'),(3,'It is so funny'),(
|
|||
select 8 from t1;
|
||||
drop table t1;
|
||||
|
||||
#
|
||||
# Check bug reported by Julian Ladisch
|
||||
# ERROR 1030: Got error 127 from table handler
|
||||
#
|
||||
|
||||
drop table if exists t1;
|
||||
create table t1 (a text, fulltext key (a));
|
||||
insert into t1 values ('aaaa');
|
||||
repair table t1;
|
||||
select * from t1 where match (a) against ('aaaa');
|
||||
drop table t1;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue