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
Currently the query planner only performs a single scan of a table or index (limiting the range of the scan when possible). Consider a query like SELECT * FROM foo WHERE bar IN (1, 2, 3, 4, 5). If an appropriate index is available, the query planner should perform "point" lookups of the index rows.
The text was updated successfully, but these errors were encountered:
Index selection now creates multiple independent spans of the index that
must be scanned. Multiple spans are created for expressions like "a
IN (1, 2, 3)" and "a = 1 OR a = 2 or a = 3" (these are equivalent).
Fixes#2140.
See #2142.
Currently the query planner only performs a single scan of a table or index (limiting the range of the scan when possible). Consider a query like
SELECT * FROM foo WHERE bar IN (1, 2, 3, 4, 5)
. If an appropriate index is available, the query planner should perform "point" lookups of the index rows.The text was updated successfully, but these errors were encountered: