Skip to content

Commit afe28c3

Browse files
committed
Add PostgreSQL 15 support
1 parent e668fc2 commit afe28c3

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/file_list.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,11 @@ RemoveProcessedFileList(char *pipelineName)
432432
char *
433433
SanitizeListFunction(char *listFunction)
434434
{
435+
#if (PG_VERSION_NUM >= 160000)
435436
List *names = stringToQualifiedNameList(listFunction, NULL);
437+
#else
438+
List *names = stringToQualifiedNameList(listFunction);
439+
#endif
436440
Oid argTypes[] = {TEXTOID};
437441
bool missingOk = false;
438442
Oid functionId = LookupFuncName(names, 1, argTypes, missingOk);

0 commit comments

Comments
 (0)