fix compilation of PG module for PostgreSQL 16

This version requires an additional include for the macros used.
This commit is contained in:
Sarah Hoffmann 2024-03-05 16:31:02 +01:00
parent e929693cae
commit 63eacc5589
2 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,6 @@
# just use the pgxs makefile # just use the pgxs makefile
foreach(suffix ${PostgreSQL_ADDITIONAL_VERSIONS} "15" "14" "13" "12" "11" "10" "9.6") foreach(suffix ${PostgreSQL_ADDITIONAL_VERSIONS} "16" "15" "14" "13" "12" "11" "10" "9.6")
list(APPEND PG_CONFIG_HINTS list(APPEND PG_CONFIG_HINTS
"/usr/pgsql-${suffix}/bin") "/usr/pgsql-${suffix}/bin")
endforeach() endforeach()

View File

@ -11,10 +11,12 @@
#include "mb/pg_wchar.h" #include "mb/pg_wchar.h"
#include <utfasciitable.h> #include <utfasciitable.h>
#ifdef PG_MODULE_MAGIC #if PG_MAJORVERSION_NUM > 15
PG_MODULE_MAGIC; #include "varatt.h"
#endif #endif
PG_MODULE_MAGIC;
Datum transliteration( PG_FUNCTION_ARGS ); Datum transliteration( PG_FUNCTION_ARGS );
Datum gettokenstring( PG_FUNCTION_ARGS ); Datum gettokenstring( PG_FUNCTION_ARGS );
void str_replace(char* buffer, int* len, int* changes, char* from, int fromlen, char* to, int tolen, int); void str_replace(char* buffer, int* len, int* changes, char* from, int fromlen, char* to, int tolen, int);