index-ordering.html 564 B

123456789101112
  1. Indexes in Materialize do not order their keys using the data type's natural
  2. ordering and instead orders by its internal representation of the key (the tuple
  3. of key length and value).
  4. As such, indexes in Materialize currently do not provide optimizations for:
  5. - Range queries; that is queries using <code>&gt;</code>, <code>&gt;=</code>,
  6. <code>&lt;</code>, <code>&lt;=</code>, `BETWEEN` clauses (e.g., `WHERE
  7. quantity > 10`, <code>price >= 10 AND price <= 50</code>, and `WHERE quantity
  8. BETWEEN 10 AND 20`).
  9. - `GROUP BY`, `ORDER BY` and `LIMIT` clauses.