* Whether a value can be matched exactly by an index lookup, i.e. the index * result for it is not a superset that the caller must re-filter. * * Only `null`/`undefined` are inexact: the WHERE evaluator's three-valued logic * makes any comparison against them UNKNOWN, yet a BTree index stores an
(value: unknown)
| 116 | * so the evaluator and the index agree on them and no re-filtering is needed. |
| 117 | */ |
| 118 | function isExactComparisonValue(value: unknown): boolean { |
| 119 | return value != null |
| 120 | } |
| 121 | |
| 122 | /** |
| 123 | * Whether the collection orders strings using locale collation. |
no outgoing calls
no test coverage detected