mirror of
https://github.com/postgres/postgres.git
synced 2025-06-19 04:21:08 +03:00
Allow no-op GiST support functions to be omitted.
There are common use-cases in which the compress and/or decompress functions can be omitted, with the result being that we make no data transformation when storing or retrieving index values. Previously, you had to provide a no-op function anyway, but this patch allows such opclass support functions to be omitted. Furthermore, if the compress function is omitted, then the core code knows that the stored representation is the same as the original data. This means we can allow index-only scans without requiring a fetch function to be provided either. Previously you had to provide a no-op fetch function if you wanted IOS to work. This reportedly provides a small performance benefit in such cases, but IMO the real reason for doing it is just to reduce the amount of useless boilerplate code that has to be written for GiST opclasses. Andrey Borodin, reviewed by Dmitriy Sarafannikov Discussion: https://postgr.es/m/CAJEAwVELVx9gYscpE=Be6iJxvdW5unZ_LkcAaVNSeOwvdwtD=A@mail.gmail.com
This commit is contained in:
@ -801,11 +801,13 @@ gistgetbitmap(IndexScanDesc scan, TIDBitmap *tbm)
|
||||
* Can we do index-only scans on the given index column?
|
||||
*
|
||||
* Opclasses that implement a fetch function support index-only scans.
|
||||
* Opclasses without compression functions also support index-only scans.
|
||||
*/
|
||||
bool
|
||||
gistcanreturn(Relation index, int attno)
|
||||
{
|
||||
if (OidIsValid(index_getprocid(index, attno, GIST_FETCH_PROC)))
|
||||
if (OidIsValid(index_getprocid(index, attno, GIST_FETCH_PROC)) ||
|
||||
!OidIsValid(index_getprocid(index, attno, GIST_COMPRESS_PROC)))
|
||||
return true;
|
||||
else
|
||||
return false;
|
||||
|
Reference in New Issue
Block a user