Re: Table order at FROM clause affects performance?

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Eduard Català <eduard(dot)catala(at)gmail(dot)com>
Cc: pgsql-performance(at)lists(dot)postgresql(dot)org
Subject: Re: Table order at FROM clause affects performance?
Date: 2018-04-12 15:30:28
Message-ID: 12796.1523547028@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

=?UTF-8?Q?Eduard_Catal=C3=A0?= <eduard(dot)catala(at)gmail(dot)com> writes:
> Given this statement:

> SELECT *several_fields* FROM A, B, C WHERE *conditions*
> A, B are tables with several LEFT JOINS but they act as one subquery.

You really can't expect useful help if you are going to pose questions
that abstract. You have removed details that count, and made assumptions
that don't necessarily hold (e.g., what does "act as one subquery" mean?)

Probably the most likely bet, on this limited information, is that there
are enough base tables hidden inside your query that you're running into
join_collapse_limit and/or from_collapse_limit, resulting in the planner
failing to investigate the best available plan in one case. Raising those
limits would help, if so. But it could easily be something else.

There's some suggestions here about how to ask useful questions:

https://wiki.postgresql.org/wiki/Slow_Query_Questions

regards, tom lane

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Eduard Català 2018-04-12 16:25:07 Re: Table order at FROM clause affects performance?
Previous Message Eduard Català 2018-04-12 14:35:09 Table order at FROM clause affects performance?