Details
-
Bug
-
Status: Open
-
Minor
-
Resolution: Unresolved
-
4.10.4, 5.4.1
-
None
-
None
-
New
Description
when user input some stop words or punctuation.
It return all records??
@Test public void test01() throws ParseException { QueryParser parser = new QueryParser("test", new CJKAnalyzer()); Query parse = parser.parse("test:hello AND (a)"); //Query parse = parser.parse("test:hello AND (;)"); System.out.println(parse.toString()); }
Does "test:hello AND (a)" === "test:hello"
thanks?