Dear list, Might have missed it from the literature and the list, sorry if so, but:
SOLR 1.4.1 <solrQueryParser defaultOperator="AND"/> Consider the query: term1 term2 OR "term1 term2" OR "term1 term3" Problem: The query produces a hit containing only term1. Solution: Modified query, grouping with parenthesis (term1 term2) OR "term1 term2" OR "term1 term3" produces hits with both term1 and term2 present and other hits that are hit by OR'ed clauses. Problem 1. Another modified query, AND instead of parenthesis: term1 AND term2 OR "term1 term2" OR "term1 term3" produces same results as the original query and same debug output. Why is that? -- Regards, Dmitry Kan