Files
tantivy/query-grammar
PSeitz 27be6aed91 lift clauses in LogicalAst (#2449)
(a OR b) OR (c OR d) can be simplified to (a OR b OR c OR d)
(a AND b) AND (c AND d) can be simplified to (a AND b AND c AND d)

This directly affects how queries are executed

remove unused SumWithCoordsCombiner
the number of fields is unused and private
2024-08-14 19:21:26 +02:00
..
2024-08-14 19:21:26 +02:00

Tantivy Query Grammar

This crate is used by tantivy to parse queries.