[postgis-tickets] [PostGIS] #4927: PostgreSQL 14 compile failure with master
PostGIS
trac at osgeo.org
Sat Jun 12 15:53:40 PDT 2021
#4927: PostgreSQL 14 compile failure with master
----------------------+---------------------------
Reporter: robe | Owner: pramsey
Type: defect | Status: new
Priority: blocker | Milestone: PostGIS 3.1.3
Component: postgis | Version: master
Resolution: | Keywords: pg14
----------------------+---------------------------
Comment (by robe):
Okay found smoking change in this commit -
https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=e56bce5d43789cce95d099554ae9593ada92b3b7
{{{
FuncCandidateList
FuncnameGetCandidates(List *names, int nargs, List *argnames,
bool expand_variadic, bool expand_defaults,
- bool missing_ok)
+ bool include_out_arguments, bool missing_ok)
{
FuncCandidateList resultList = NULL;
bool any_special = false;
@@ -978,6 +986,7 @@ FuncnameGetCandidates(List *names, int nargs, List
*argnames,
{
HeapTuple proctup = &catlist->members[i]->tuple;
Form_pg_proc procform = (Form_pg_proc) GETSTRUCT(proctup);
+ Oid *proargtypes = procform->proargtypes.values;
int pronargs = procform->pronargs;
int effective_nargs;
int pathpos = 0;
@@ -1012,6 +1021,35 @@ FuncnameGetCandidates(List *names, int nargs, List
*argnames,
continue; /* proc is not in search path */
}
}}}
--
Ticket URL: <https://trac.osgeo.org/postgis/ticket/4927#comment:2>
PostGIS <http://trac.osgeo.org/postgis/>
The PostGIS Trac is used for bug, enhancement & task tracking, a user and developer wiki, and a view into the subversion code repository of PostGIS project.
More information about the postgis-tickets
mailing list