[postgis-tickets] [SCM] PostGIS branch master updated. 3.1.0alpha1-36-g8eecc74

git at osgeo.org git at osgeo.org
Wed Mar 4 18:22:19 PST 2020


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  8eecc746627f200f0df834ca19a3aea92db3782f (commit)
      from  10f91f070e04ffa7866560b682694b584de54b4e (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 8eecc746627f200f0df834ca19a3aea92db3782f
Author: Regina Obe <lr at pcorp.us>
Date:   Wed Mar 4 21:22:12 2020 -0500

    add See also section for ST_BandPath and add more examples of GIC setting for outdb

diff --git a/doc/reference_guc.xml b/doc/reference_guc.xml
index 17009f1..6c07829 100644
--- a/doc/reference_guc.xml
+++ b/doc/reference_guc.xml
@@ -225,7 +225,7 @@ SET postgis.gdal_enabled_drivers = 'DISABLE_ALL';
 
 			<refsection>
 				<title>Examples</title>
-				<para>Set and reset <varname>postgis.enable_outdb_rasters</varname></para>
+				<para>Set and reset <varname>postgis.enable_outdb_rasters</varname> for current session</para>
 
 				<programlisting>
 SET postgis.enable_outdb_rasters TO True;
@@ -233,6 +233,20 @@ SET postgis.enable_outdb_rasters = default;
 SET postgis.enable_outdb_rasters = True;
 SET postgis.enable_outdb_rasters = False;
 				</programlisting>
+
+				<para>Set for specific database</para>
+
+				<programlisting>
+ALTER DATABASE gisdb SET postgis.enable_outdb_rasters = true;
+				</programlisting>
+
+				<para>Setting for whole database cluster. You need to reconnect to the database for changes to take effect.</para>
+				<programlisting>
+ --writes to postgres.auto.conf
+ALTER SYSTEM postgis.enable_outdb_rasters = true;
+ --Reloads postgres conf
+SELECT pg_reload_conf();
+				</programlisting>
 			</refsection>
 
 			<refsection>
diff --git a/doc/reference_raster.xml b/doc/reference_raster.xml
index 69e37a2..db0ced7 100644
--- a/doc/reference_raster.xml
+++ b/doc/reference_raster.xml
@@ -4012,9 +4012,9 @@ select st_bandisnodata(rast, 2) from dummy_rast where rid = 1; -- Expected false
 				<title>Description</title>
 
 				<para>Returns system file path to a band.  Returns null for in db raster bands.</para>
-				</refsection>
+			</refsection>
 
-				<refsection>
+			<refsection>
 					<title>Examples</title>
 
 					<programlisting>SELECT rid, ST_BandPath(rast,1) AS file_path
@@ -4024,7 +4024,7 @@ LIMIT 1;</programlisting>
 
 			<refsection>
 				<title>See Also</title>
-				<para></para>
+				<para><xref linkend="RT_ST_BandFileSize" />, <xref linkend="RT_ST_BandFileTimestamp" />, <xref linkend="RT_ST_BandMetaData" />, <xref linkend="postgis_enable_outdb_rasters" />, <xref linkend="outdb" /></para>
 			</refsection>
 		</refentry>
 

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

Summary of changes:
 doc/reference_guc.xml    | 16 +++++++++++++++-
 doc/reference_raster.xml |  6 +++---
 2 files changed, 18 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list