Re: Left joining against two empty tables makes a query - Mailing list pgsql-performance

From Tom Lane
Subject Re: Left joining against two empty tables makes a query
Date
Msg-id 25699.1122574431@sss.pgh.pa.us
Whole thread Raw
In response to Re: Left joining against two empty tables makes a query  (Chris Travers <chris@travelamericas.com>)
List pgsql-performance
Chris Travers <chris@travelamericas.com> writes:
> Secondly, the project table has *never* had anything in it.  So where
> are these numbers coming from?

The planner is designed to assume a certain minimum size (10 pages) when
it sees that a table is of zero physical length.  The reason for this is
that there are lots of scenarios where a plan created just after a table
is first created will continue to be used while the table is filled, and
if we optimized on the assumption of zero size we would produce plans
that seriously suck once the table gets big.  Assuming a few thousand
rows keeps us out of the worst problems of this type.

(If we had an infrastructure for regenerating cached plans then we could
fix this more directly, by replanning whenever the table size changes
"too much".  We don't yet but I hope there will be something by 8.2.)

You might try going ahead and actually putting a row or two into
projects; vacuuming that will change the state to where the planner
will believe the small size.  (If you aren't ever planning to have
anything in projects, why have the table at all?)

            regards, tom lane

pgsql-performance by date:

Previous
From: Chris Hoover
Date:
Subject: Re: Fwd: Help with view performance problem
Next
From: Tom Lane
Date:
Subject: Re: Unable to explain DB error