Hello , I have a query `foo AND bar OR baz`. When I use "AND" as a default operator this is the resulting Lucene query:
`+test:foo test:bar test:baz` When I use "OR" this is the resulting query `+test:foo +test:bar test:baz` I expected these two return exactly the same Lucene query because I used operator explicitly. I thought that the default operator is used only when operator is not explicitly mentioned in the query. Am I missing something or this is not expected behavior (bug)? -- Paweł Róg