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
When querying on a table with a small number of records (like in development), the Postgres query-planner may ignore indexes in favor of sequential scans.
It would be beneficial to have an option to force Postgres to use indexes when performing the query to better simulate production behavior.
When querying on a table with a small number of records (like in development), the Postgres query-planner may ignore indexes in favor of sequential scans.
It would be beneficial to have an option to force Postgres to use indexes when performing the query to better simulate production behavior.
An example implementation is:
would be equivalent to:
The text was updated successfully, but these errors were encountered: