Re: Views don't seem to use indexes?

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Tim Slechta <trslechta(at)gmail(dot)com>
Cc: pgsql-performance(at)lists(dot)postgresql(dot)org
Subject: Re: Views don't seem to use indexes?
Date: 2021-10-28 06:15:52
Message-ID: 309712.1635401752@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Tim Slechta <trslechta(at)gmail(dot)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

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Tim Slechta 2021-10-28 15:00:31 Re: Views don't seem to use indexes?
Previous Message David G. Johnston 2021-10-28 04:54:33 Re: Views don't seem to use indexes?