summaryrefslogtreecommitdiff
path: root/mysql-test/r/fulltext.result
diff options
context:
space:
mode:
authorjimw@mysql.com <>2005-06-17 21:44:17 +0200
committerjimw@mysql.com <>2005-06-17 21:44:17 +0200
commit176143413e713d0ce78cc11f909abe8c5d1c4340 (patch)
treead6efdce69deb802627c189485df5498a88a437c /mysql-test/r/fulltext.result
parent9b3d0b85a3c372ac7ac8be0cbec859cba8f13a57 (diff)
downloadmariadb-git-176143413e713d0ce78cc11f909abe8c5d1c4340.tar.gz
Fix hang/crash with Boolean full-text search against an unindexed field for
which the query contained more words than we allocated space. (Bug #7858)
Diffstat (limited to 'mysql-test/r/fulltext.result')
-rw-r--r--mysql-test/r/fulltext.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/fulltext.result b/mysql-test/r/fulltext.result
index dd5b0407eb3..7ac7e1ca72b 100644
--- a/mysql-test/r/fulltext.result
+++ b/mysql-test/r/fulltext.result
@@ -338,7 +338,7 @@ insert into t2 values (3, 1, 'xxbuz');
select * from t1 join t2 using(`t1_id`) where match (t1.name, t2.name) against('xxfoo' in boolean mode);
t1_id name t2_id t1_id name
1 data1 1 1 xxfoo
-select * from t2 where match name against ('a* b* c* d* e* f*' in boolean mode);
+select * from t2 where match name against ('*a*b*c*d*e*f*' in boolean mode);
t2_id t1_id name
drop table t1,t2;
create table t1 (a text, fulltext key (a));