Its a problem with the query parser, but this is not the correct fix.
I think this fix just masks the problem.

> I think it's the bug of QueryParser.jj file because there the term is
> definied as character string that begins with any English character.
> 
> Modify a line in the QueryParser.jj:
> orig line:
> <TERM:      <_IDENTIFIER_CHAR>
>               ( ~["\"", " ", "\t", "(", ")", ":", "&", "|", "^", "*",
> "?", "~", "{", "}", "[", "]" ] )* >
> 
> modified:
> <TERM:   ( ~["\"", " ", "\t", "(", ")", ":", "&", "|", "^", "*", "?",
> "~", "{", "}", "[", "]" ] )+ >
> 
> And rebuild the package. I managed to search "�".


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

Reply via email to