On Thursday 28 October 2004 19:03, Justin Swanhart wrote:

> Have you tried making a term query by hand and testing to see if it
> works? Â
>
> Term t = new Term("field", "this is a \"test\"");
> PhraseQuery pq = new PhraseQuery(t);

That's not a proper PharseQuery, it searches for *one* 
term >this is a "test"< which is probably not what one wants. You 
have to add the terms one by one to a PhraseQuery.

Regards
 Daniel

-- 
http://www.danielnaber.de

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to