Re: Views don't seem to use indexes? - Mailing list pgsql-performance

From Tom Lane
Subject Re: Views don't seem to use indexes?
Date
Msg-id 309712.1635401752@sss.pgh.pa.us
Whole thread Raw
In response to Views don't seem to use indexes?  (Tim Slechta <trslechta@gmail.com>)
Responses Re: Views don't seem to use indexes?
List pgsql-performance
Tim Slechta <trslechta@gmail.com> writes:
> Why does the planner not use an index when a view is involved?

It's not about a "view" ... you'd get the same results if you wrote
out the UNION ALL construct in-line as a sub-select.

I think you may be shooting yourself in the foot by not making sure that
the UNION ALL arms match in data type.  You did not show us the definition
of pworkspaceobject, but if pworkspaceobject.pobject_name isn't of type
text (maybe it's varchar?) then the type mismatch would prevent pushing
down a condition on that column.  The source code says:

 * For subqueries using UNION/UNION ALL/INTERSECT/INTERSECT ALL, we can
 * push quals into each component query, but the quals can only reference
 * subquery columns that suffer no type coercions in the set operation.
 * Otherwise there are possible semantic gotchas.

I'm too tired to reconstruct an example of the semantic issues...

            regards, tom lane



pgsql-performance by date:

Previous
From: "David G. Johnston"
Date:
Subject: Re: Views don't seem to use indexes?
Next
From: Tim Slechta
Date:
Subject: Re: Views don't seem to use indexes?