X-Git-Url: http://sigaev.ru/git/gitweb.cgi?p=smlar.git;a=blobdiff_plain;f=smlar.c;h=ef89e80d959ae96d6e8ef22d4b2f976ab1bab226;hp=84fc3444c15122efb0d2a1eed0f282b5711dfc43;hb=5cb298d7226344342759d54fe32d72665315d372;hpb=0bc52593d34ce24b38cbd4fb6225d97601c5b871 diff --git a/smlar.c b/smlar.c index 84fc344..ef89e80 100644 --- a/smlar.c +++ b/smlar.c @@ -3,6 +3,7 @@ #include "fmgr.h" #include "access/genam.h" #include "access/heapam.h" +#include "access/htup_details.h" #include "access/nbtree.h" #include "catalog/indexing.h" #include "catalog/pg_am.h" @@ -11,6 +12,7 @@ #include "catalog/pg_opclass.h" #include "catalog/pg_type.h" #include "executor/spi.h" +#include "utils/catcache.h" #include "utils/fmgroids.h" #include "utils/lsyscache.h" #include "utils/memutils.h" @@ -20,6 +22,12 @@ PG_MODULE_MAGIC; +#if (PG_VERSION_NUM >= 90400) +#define SNAPSHOT NULL +#else +#define SNAPSHOT SnapshotNow +#endif + static Oid getDefaultOpclass(Oid amoid, Oid typid) { @@ -38,7 +46,7 @@ getDefaultOpclass(Oid amoid, Oid typid) scan = systable_beginscan(heapRel, OpclassAmNameNspIndexId, true, - SnapshotNow, 1, &skey); + SNAPSHOT, 1, &skey); while (HeapTupleIsValid((tuple = systable_getnext(scan)))) { @@ -130,7 +138,7 @@ getAMProc(Oid amoid, Oid typid) #endif scan = systable_beginscan(heapRel, AccessMethodProcedureIndexId, true, - SnapshotNow, + SNAPSHOT, #if PG_VERSION_NUM >= 90200 4, #else