[postgis-tickets] [SCM] PostGIS branch master updated. 3.3.0beta1-12-g889aaa619
git at osgeo.org
git at osgeo.org
Mon Jul 4 08:20:42 PDT 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, master has been updated
via 889aaa6198b66899f5ffbdf8748d72bbda79ff4f (commit)
from 908b72b66f77d886735e7074008eb00cedb4857e (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 889aaa6198b66899f5ffbdf8748d72bbda79ff4f
Author: Bas Couwenberg <sebastic at xs4all.nl>
Date: Mon Jul 4 07:53:04 2022 +0200
Fix build failure on s390x.
Closes #5179
Fixes: https://trac.osgeo.org/postgis/ticket/5179
diff --git a/NEWS b/NEWS
index 412828c40..48373a111 100644
--- a/NEWS
+++ b/NEWS
@@ -6,9 +6,10 @@ ST_MakeValid enhancements with 3.10+, numerouse additional enhancements with GEO
Changes since PostGIS 3.3.0beta1
* Enhancements *
- - GH698: support parallel aggregate for ST_Union (Sergei Shoulbakov)
+ - GH698, support parallel aggregate for ST_Union (Sergei Shoulbakov)
* Bug fixes *
+ - #5179, pgsql2shp syntax error on big-endian (Bas Couwenberg)
PostGIS 3.3.0beta1
diff --git a/loader/pgsql2shp-core.c b/loader/pgsql2shp-core.c
index 010aa5e91..b3a16dc0c 100644
--- a/loader/pgsql2shp-core.c
+++ b/loader/pgsql2shp-core.c
@@ -1857,7 +1857,7 @@ ShpDumperOpenTable(SHPDUMPERSTATE *state)
#ifdef WORDS_BIGENDIAN
if (state->pgis_major_version > 0) {
stringbuffer_aprintf(&sb,
- "ST_asEWKB(ST_SetSRID(%s::geometry, 0), 'XDR') AS _geoX"
+ "ST_asEWKB(ST_SetSRID(%s::geometry, 0), 'XDR') AS _geoX",
quote_identifier(state->geo_col_name) );
}
else
-----------------------------------------------------------------------
Summary of changes:
NEWS | 3 ++-
loader/pgsql2shp-core.c | 2 +-
2 files changed, 3 insertions(+), 2 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list