From: Teodor Sigaev Date: Tue, 3 Mar 2020 15:37:53 +0000 (+0300) Subject: v13 support X-Git-Url: http://www.sigaev.ru/git/gitweb.cgi?p=plantuner.git;a=commitdiff_plain;h=800d81bc85da64ff3ef66e12aed1d4e1e54fc006 v13 support --- diff --git a/plantuner.c b/plantuner.c index b22ef9c..f87dcea 100644 --- a/plantuner.c +++ b/plantuner.c @@ -49,6 +49,11 @@ PG_MODULE_MAGIC; +#if PG_VERSION_NUM >= 130000 +#define heap_open(r, l) table_open(r, l) +#define heap_close(r, l) table_close(r, l) +#endif + static int nDisabledIndexes = 0; static Oid *disabledIndexes = NULL; static char *disableIndexesOutStr = "";