mirror of
https://github.com/MariaDB/server.git
synced 2026-05-10 17:14:30 +02:00
BUG#5327 - mi_sort_index() of 2-level tree
This commit is contained in:
parent
f7f85eb664
commit
f45655138e
3 changed files with 40 additions and 9 deletions
|
|
@ -44,6 +44,9 @@ while ($1)
|
|||
|
||||
# converting to two-level
|
||||
repair table t1 quick;
|
||||
check table t1;
|
||||
optimize table t1; # BUG#5327 - mi_sort_index() of 2-level tree
|
||||
check table t1;
|
||||
|
||||
select count(*) from t1 where match a against ('aaaxxx');
|
||||
select count(*) from t1 where match a against ('aaayyy');
|
||||
|
|
@ -102,6 +105,11 @@ CREATE TABLE t1 (
|
|||
FULLTEXT KEY (a)
|
||||
) ENGINE=MyISAM;
|
||||
|
||||
#
|
||||
# now same as about but w/o repair table
|
||||
# 2-level tree created by mi_write
|
||||
#
|
||||
|
||||
# two-level entry, second-level tree with depth 2
|
||||
--disable_query_log
|
||||
let $1=260;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue