On Thu, Apr 16, 2009 at 8:05 AM, Matthew Wakeling <matthew@xxxxxxxxxxx> wrote: > On Thu, 16 Apr 2009, Robert Haas wrote: >> >> What happens if you change join_collapse_limit and from_collapse_limit >> to some huge number? >> >> >> http://www.postgresql.org/docs/current/static/runtime-config-query.html#GUC-FROM-COLLAPSE-LIMIT > > That solves the problem. So, a view is treated as a subquery then? > no...the view is simply inlined into the query (think C macro) using the rules. You just bumped into an arbitrary (and probably too low) limit into the number of tables the planner can look at in terms of optimizing certain types of plans. It's the first thing to look at when you add tables to a big query and performance falls off a cliff when it shouldn't. merlin -- Sent via pgsql-performance mailing list (pgsql-performance@xxxxxxxxxxxxxx) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-performance