[postgis-tickets] [SCM] PostGIS branch master updated. 3.1.0rc1-207-g296e1bf
git at osgeo.org
git at osgeo.org
Sun Jun 13 20:21:33 PDT 2021
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".
The branch, master has been updated
via 296e1bfdb6a4b542cc1b3a7e6f28c7d53a0a9fd8 (commit)
from ba12b4756994120cd736c64054322e290e5668ca (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 296e1bfdb6a4b542cc1b3a7e6f28c7d53a0a9fd8
Author: Regina Obe <lr at pcorp.us>
Date: Sun Jun 13 23:19:28 2021 -0400
Suggested change from Julien Rouhaud (rjuju) to fix PG14
references #4927 for PostGIS 3.2.0
diff --git a/libpgcommon/lwgeom_pg.c b/libpgcommon/lwgeom_pg.c
index 5629e93..6243fca 100644
--- a/libpgcommon/lwgeom_pg.c
+++ b/libpgcommon/lwgeom_pg.c
@@ -118,7 +118,11 @@ postgis_get_full_version_schema()
{
const char* proname = "postgis_full_version";
List* names = stringToQualifiedNameList(proname);
+ #if POSTGIS_PGSQL_VERSION < 140
FuncCandidateList clist = FuncnameGetCandidates(names, -1, NIL, false, false, false);
+ #else
+ FuncCandidateList clist = FuncnameGetCandidates(names, -1, NIL, false, false, false, false);
+ #endif
if (!clist)
return InvalidOid;
-----------------------------------------------------------------------
Summary of changes:
libpgcommon/lwgeom_pg.c | 4 ++++
1 file changed, 4 insertions(+)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list