Re: Allowing extensions to supply operator-/function-specific info
Tom Lane <tgl@sss.pgh.pa.us>
From: Tom Lane <tgl@sss.pgh.pa.us>
To: Paul Ramsey <pramsey@cleverelephant.ca>
Cc: PostgreSQL Hackers <pgsql-hackers@lists.postgresql.org>
Date: 2019-02-27T00:09:28Z
Lists: pgsql-hackers
Commits
Same data as JSON:
GET /api/v1/messages/:b64id/commits
the thread's linked commits as JSON, with link sources.
API reference →
-
Allow extensions to generate lossy index conditions.
- 74dfe58a5927 12.0 landed
-
Build out the planner support function infrastructure.
- a391ff3c3d41 12.0 landed
-
Create the infrastructure for planner support functions.
- 1fb57af92069 12.0 landed
-
Disable transforms that replaced AT TIME ZONE with RelabelType.
- c22ecc6562aa 10.0 cited
Paul Ramsey <pramsey@cleverelephant.ca> writes: >> On Feb 26, 2019, at 2:19 PM, Tom Lane <tgl@sss.pgh.pa.us> wrote: >> In most cases, multiple matching arguments are going to lead to >> failure to construct any useful index condition, because your >> comparison value has to be a pseudoconstant (ie, not a variable >> from the same table, so in both of the above examples there's >> no function argument you could compare to). > This term “pseudoconstant” has been causing me some worry as it crops up > in your explanations a fair amount. It is defined in the documentation, but what it boils down to is that your comparison value can't contain either (1) variables from the same table the index is on or (2) volatile functions. There is a function defined in optimizer.h that can check that for you, so you don't have to worry too much about the details. > I expect to have queries of the form > SELECT a.*, b.* > FROM a > JOIN b > ON ST_Intersects(a.geom, b.geom) Sure, that's fine. If there are indexes on both a.geom and b.geom, you'll get separate opportunities to match to each of those, and what you'd be constructing in each case is an indexqual that has to be used on the inner side of a nestloop join (so that the outer side can provide the comparison value). What's not fine is "WHERE ST_Intersects(a.geom, a.othergeom)" ... you can't make an indexscan out of that, at least not with the && operator. regards, tom lane