Closed nblumhardt closed 4 months ago
Errata for the 2024.3 release - spotted just a fraction too late to make it into the first cut.
If an expression index is created on a property A, then comparisons against object literals:
A
A = {b: 42}
will not use the index due to a quirk in the underlying AST. All other constant/literal types will work.
Note that the impact of this bug is the query running slower. Results are still correct.
Errata for the 2024.3 release - spotted just a fraction too late to make it into the first cut.
If an expression index is created on a property
A
, then comparisons against object literals:will not use the index due to a quirk in the underlying AST. All other constant/literal types will work.
Note that the impact of this bug is the query running slower. Results are still correct.