v13 + other support
authorTeodor Sigaev <teodor@sigaev.ru>
Wed, 7 Oct 2020 21:42:32 +0000 (00:42 +0300)
committerTeodor Sigaev <teodor@sigaev.ru>
Wed, 7 Oct 2020 21:42:32 +0000 (00:42 +0300)
smlar_gin.c
smlar_gist.c

index 798b9be..4164fa4 100644 (file)
@@ -5,7 +5,11 @@
 #include "fmgr.h"
 #include "access/gin.h"
 #include "access/skey.h"
+#if PG_VERSION_NUM < 130000
+#include "access/tuptoaster.h"
+#else
 #include "access/heaptoast.h"
+#endif
 
 PG_FUNCTION_INFO_V1(smlararrayextract);
 Datum smlararrayextract(PG_FUNCTION_ARGS);
index 8cd044b..7d77788 100644 (file)
@@ -3,7 +3,11 @@
 #include "fmgr.h"
 #include "access/gist.h"
 #include "access/skey.h"
+#if PG_VERSION_NUM < 130000
+#include "access/tuptoaster.h"
+#else
 #include "access/heaptoast.h"
+#endif
 #include "utils/memutils.h"
 
 typedef struct SmlSign {