You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Array-field membership is now index-independent.field.eq(x) and field.in([..]) on an
array field are matched by element containment on a full/collection scan, mirroring the index
path (arrays are indexed element-wise). Previously the full-scan path did whole-value equality,
so results depended on whether an index existed or was chosen by the planner: when both an
array field and a range field were indexed, the planner would claim the range index for a between and relegate the array-eq to a full scan, which then silently matched nothing.