Fixed version check for palloc variants

This commit is contained in:
Andrew Kane
2026-07-27 22:25:21 -07:00
parent e6bd4c8acf
commit 0b2d92bc4f
5 changed files with 5 additions and 5 deletions

View File

@@ -26,7 +26,7 @@
#include "parser/scansup.h"
#endif
#if PG_VERSION_NUM < 160000
#if PG_VERSION_NUM < 140600
#define palloc_array(type, count) ((type *) palloc(sizeof(type) * (count)))
#endif