[postgis-tickets] [SCM] PostGIS branch stable-3.3 updated. 3.3.1-32-g5fa9680ae
git at osgeo.org
git at osgeo.org
Tue Nov 8 22:08:47 PST 2022
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, stable-3.3 has been updated
via 5fa9680ae47a26fedd60c4e3922fea1b769e32e2 (commit)
from f5479352f19dcab4a6f4bc1c0ec706bcb5997f79 (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 5fa9680ae47a26fedd60c4e3922fea1b769e32e2
Author: Regina Obe <lr at pcorp.us>
Date: Wed Nov 9 01:01:18 2022 -0500
Specify geometry type when SFCGAL can't process.
Closes #4988 for PostGIS 3.3.2
diff --git a/NEWS b/NEWS
index 33c41336f..38c7051b0 100644
--- a/NEWS
+++ b/NEWS
@@ -15,6 +15,7 @@ PostGIS 3.3.2
- #5264, Fix topology install on Alpine (Louis Descoteaux)
- #5244, postgis_tiger_geocoder update for TIGER 2022 (Regina Obe)
- #5285, Fix import/export of topologies with names needing quotes (Sandro Santilli)
+ - #4988, SFCGAL specify name of unknown type when SFCGAL can't process (Regina Obe)
PostGIS 3.3.1
diff --git a/liblwgeom/lwgeom_sfcgal.c b/liblwgeom/lwgeom_sfcgal.c
index d49d3f93a..325c67ecd 100644
--- a/liblwgeom/lwgeom_sfcgal.c
+++ b/liblwgeom/lwgeom_sfcgal.c
@@ -581,7 +581,7 @@ LWGEOM2SFCGAL(const LWGEOM *geom)
break;
default:
- lwerror("LWGEOM2SFCGAL: Unknown geometry type !");
+ lwerror("LWGEOM2SFCGAL: Unsupported geometry type %s !", lwtype_name(geom->type));
return NULL;
}
}
-----------------------------------------------------------------------
Summary of changes:
NEWS | 1 +
liblwgeom/lwgeom_sfcgal.c | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list