Skip to content

Commit

Permalink
Fix for PG16 stringToQualifiedNameList
Browse files Browse the repository at this point in the history
Closes #338
  • Loading branch information
robe2 committed Aug 13, 2023
1 parent 6837592 commit 553a137
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pgsql/pc_pgsql.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,11 @@ static PC_CONSTANTS *pc_constants_cache = NULL;
static Oid pointcloud_get_full_version_schema()
{
const char *proname = "pointcloud_full_version";
#if PGSQL_VERSION < 160
List *names = stringToQualifiedNameList(proname);
#else
List *names = stringToQualifiedNameList(proname, NULL);
#endif
#if PGSQL_VERSION < 140
FuncCandidateList clist =
FuncnameGetCandidates(names, -1, NIL, false, false, false);
Expand Down

0 comments on commit 553a137

Please sign in to comment.