From 835e0159b68e62656a549fb05549632f123fe98f Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 17 Nov 2004 13:38:35 +0100 Subject: test for bug#5528 --- mysql-test/t/fulltext.test | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'mysql-test/t/fulltext.test') diff --git a/mysql-test/t/fulltext.test b/mysql-test/t/fulltext.test index bd887bc63ee..e46399bb876 100644 --- a/mysql-test/t/fulltext.test +++ b/mysql-test/t/fulltext.test @@ -240,3 +240,13 @@ select * from t2 where match name against ('a* b* c* d* e* f*' in boolean mode); drop table t1,t2; +# +# icc -ip bug (ip = interprocedural optimization) +# bug#5528 +# +CREATE TABLE t1 (h text, FULLTEXT (h)); +INSERT INTO t1 VALUES ('Jesses Hasse Ling and his syncopators of Swing'); +REPAIR TABLE t1; +select count(*) from t1; +drop table t1; + -- cgit v1.2.1