|
|
|
|
|
by malisper
3411 days ago
|
|
> I don't know any way to disable nestloop query planning only for a specific query You can do that by using SET LOCAL. Here's what your query would become: BEGIN;
SET LOCAL enable_nestloop = off;
<QUERY>
COMMIT;
SET LOCAL applies the setting, but only within the current transaction.If you post a link to the output from EXPLAIN, I could probably advise you the right way to handle this query. |
|