Re: Strange FULLTEXT search results in 4.0.2alpha

2002-06-22 Thread Jocelyn Fournier
: "Grzegorz Paszka" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, June 22, 2002 9:38 PM Subject: Strange FULLTEXT search results in 4.0.2alpha > I've compiled mysql 4.0.2-alpha from source. > > I've created table: > > create table test ( &

Strange FULLTEXT search results in 4.0.2alpha

2002-06-22 Thread Grzegorz Paszka
I've compiled mysql 4.0.2-alpha from source. I've created table: create table test ( id_test int4, body text); Next: create fulltext index test_body on test (body); insert into test (id_test,body) values (1,'test rpm'); insert into test (id_test,body) values (2,'test rpm'); insert into test (i