[SCM] PostGIS branch master updated. 3.5.0-180-g04ef40af3

git at osgeo.org git at osgeo.org
Sun Dec 22 09:51:13 PST 2024


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  04ef40af32ceeb671bce399b73814e8630c54a6d (commit)
       via  c9e5e238d44b8708f14ed1b337c9b50b2ae4ffad (commit)
      from  aaf6e52175fa45740cc5ca3d5b1eded4b5afdb3f (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 04ef40af32ceeb671bce399b73814e8630c54a6d
Author: Regina Obe <lr at pcorp.us>
Date:   Sun Dec 22 12:51:08 2024 -0500

    Put back codeql back to pg-14, failing on pg-16

diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
index 6396f7408..4fdd1c507 100644
--- a/.github/workflows/codeql.yml
+++ b/.github/workflows/codeql.yml
@@ -54,7 +54,7 @@ jobs:
     - name: Install dependencies
       run: |
           sudo apt-get update
-          sudo apt-get install -y g++ autoconf automake libgeos-dev libproj-dev libgdal-dev libjson-c-dev gettext libxml2-dev postgresql-server-dev-16 postgresql-client-16 libprotobuf-c-dev libprotoc-dev protobuf-c-compiler
+          sudo apt-get install -y g++ autoconf automake libgeos-dev libproj-dev libgdal-dev libjson-c-dev gettext libxml2-dev postgresql-server-dev-14 postgresql-client-14 libprotobuf-c-dev libprotoc-dev protobuf-c-compiler
 
     - name: Build
       run: |

commit c9e5e238d44b8708f14ed1b337c9b50b2ae4ffad
Author: Regina Obe <lr at pcorp.us>
Date:   Sun Dec 22 00:59:32 2024 -0500

    Fix ST_AsMVTGeom example.  Closes #5758 for PostGIS 3.5.1

diff --git a/doc/reference_output.xml b/doc/reference_output.xml
index 50e7f7370..2e719d0f4 100644
--- a/doc/reference_output.xml
+++ b/doc/reference_output.xml
@@ -1395,7 +1395,7 @@ SELECT ST_AsText(ST_AsMVTGeom(
  MULTIPOLYGON(((5 4096,10 4091,10 4096,5 4096)),((5 4096,0 4101,0 4096,5 4096)))
 		</programlisting>
 
-    <para>Canonical example for a Web Mercator tile using a computed tile bounds to query and clip geometry.
+    <para>Canonical example for a Web Mercator tile using a computed tile bounds to query and clip geometry. This assumes the data.geom column has srid of 4326.
     </para>
 		<programlisting><![CDATA[
 
@@ -1403,7 +1403,7 @@ SELECT ST_AsMVTGeom(
             ST_Transform( geom, 3857 ),
             ST_TileEnvelope(12, 513, 412), extent => 4096, buffer => 64) AS geom
   FROM data
-  WHERE geom && ST_TileEnvelope(12, 513, 412, margin => (64.0 / 4096))
+  WHERE geom && ST_Transform(ST_TileEnvelope(12, 513, 412, margin => (64.0 / 4096)),4326)
 
 
 ]]></programlisting>

-----------------------------------------------------------------------

Summary of changes:
 .github/workflows/codeql.yml | 2 +-
 doc/reference_output.xml     | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list