[SCM] PostGIS branch stable-3.2 updated. 3.2.6-14-g39dff3194

git at osgeo.org git at osgeo.org
Mon Jan 8 15:37:33 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, stable-3.2 has been updated
       via  39dff31941e61d3b80e0c9dc1811a70e0084b102 (commit)
       via  c231aaa90324da1e26d4121e58927e434e1147a9 (commit)
      from  ce0ff1f9649dde67a589fe40a6b214eea0b443a9 (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 39dff31941e61d3b80e0c9dc1811a70e0084b102
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Mon Jan 8 15:37:20 2024 -0800

    Avoid pulling in absl silently

diff --git a/deps/flatgeobuf/include/flatbuffers/base.h b/deps/flatgeobuf/include/flatbuffers/base.h
index cc9e22dcc..30d250e31 100644
--- a/deps/flatgeobuf/include/flatbuffers/base.h
+++ b/deps/flatgeobuf/include/flatbuffers/base.h
@@ -237,12 +237,12 @@ namespace flatbuffers {
       }
       #define FLATBUFFERS_HAS_STRING_VIEW 1
     // Check for absl::string_view
-    #elif __has_include("absl/strings/string_view.h")
-      #include "absl/strings/string_view.h"
-      namespace flatbuffers {
-        typedef absl::string_view string_view;
-      }
-      #define FLATBUFFERS_HAS_STRING_VIEW 1
+    //#elif __has_include("absl/strings/string_view.h")
+    //  #include "absl/strings/string_view.h"
+    //  namespace flatbuffers {
+    //    typedef absl::string_view string_view;
+    //  }
+    //  #define FLATBUFFERS_HAS_STRING_VIEW 1
     #endif
   #endif // __has_include
 #endif // !FLATBUFFERS_HAS_STRING_VIEW

commit c231aaa90324da1e26d4121e58927e434e1147a9
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Mon Jan 8 15:31:00 2024 -0800

    Clarify documentation page typos regarding gdal_vsi_options, references #5653

diff --git a/doc/reference_guc.xml b/doc/reference_guc.xml
index 8bda63a10..e73ef478a 100644
--- a/doc/reference_guc.xml
+++ b/doc/reference_guc.xml
@@ -261,7 +261,7 @@ SELECT pg_reload_conf();
 
   <refentry id="postgis_gdal_vsi_options">
             <refnamediv>
-                <refname>postgis.gdal_config_options</refname>
+                <refname>postgis.gdal_vsi_options</refname>
                 <refpurpose>
                     A string configuration to set options used when working with an out-db raster.
                 </refpurpose>
@@ -282,12 +282,12 @@ SELECT pg_reload_conf();
                 <para>Set <varname>postgis.gdal_vsi_options</varname> for current session:</para>
 
                 <programlisting>
-SET postgis.gdal_config_options = 'AWS_ACCESS_KEY_ID=xxxxxxxxxxxxxxx AWS_SECRET_ACCESS_KEY=yyyyyyyyyyyyyyyyyyyyyyyyyy';
+SET postgis.gdal_vsi_options = 'AWS_ACCESS_KEY_ID=xxxxxxxxxxxxxxx AWS_SECRET_ACCESS_KEY=yyyyyyyyyyyyyyyyyyyyyyyyyy';
                 </programlisting>
 
                 <para>Set <varname>postgis.gdal_vsi_options</varname> just for the <emphasis>current transaction</emphasis> using the <varname>LOCAL</varname> keyword:</para>
                 <programlisting>
-SET LOCAL postgis.gdal_config_options = 'AWS_ACCESS_KEY_ID=xxxxxxxxxxxxxxx AWS_SECRET_ACCESS_KEY=yyyyyyyyyyyyyyyyyyyyyyyyyy';
+SET LOCAL postgis.gdal_vsi_options = 'AWS_ACCESS_KEY_ID=xxxxxxxxxxxxxxx AWS_SECRET_ACCESS_KEY=yyyyyyyyyyyyyyyyyyyyyyyyyy';
                 </programlisting>
             </refsection>
 

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

Summary of changes:
 deps/flatgeobuf/include/flatbuffers/base.h | 12 ++++++------
 doc/reference_guc.xml                      |  6 +++---
 2 files changed, 9 insertions(+), 9 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list