DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=16167>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=16167 Problem searching with WildCards and quotes [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|INVALID | ------- Additional Comments From [EMAIL PROTECTED] 2003-01-19 08:01 ------- i have the same bug!!! i have written my own Analyzer and it looks like this: ---start code--- public class testAnalyzer extends Analyzer { public TokenStream tokenStream(String fieldName, Reader reader) { return newtestTokenizer(reader); } } ---end code--- ---start code--- public class testTokenizer extends CharTokenizer { public testTokenizer(Reader reader) { siper(reader); } protected boolean isTokenChar(char c) { return true; } } ---end code--- i index the documents with this analyzer and queryparse with the same analyzer. when i search for "12*" i get a hit but when i search for "\"12*\"" i get no hits. so yes indeed this is a bug and if not please tell me what i am doing wrong. thanks, Amit -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
