- #2512, Support for foreign tables and materialized views in
raster_columns and raster_overviews
- #2532, Add missing raster/geometry commutator operators
+ - #2540, Change GUC name for GDAL_DATA to postgis.gdal_datapath
* Code refactoring *
/* Define custom GUC variables. */
DefineCustomStringVariable(
- "postgis.gdal.datapath", /* name */
+ "postgis.gdal_datapath", /* name */
"Path to GDAL data files.", /* short_desc */
"Physical path to directory containing GDAL data files (sets the GDAL_DATA config option).", /* long_desc */
&gdaldatapath, /* valueAddr */
THEN false
ELSE NULL
END;
-SET postgis.gdal.datapath = '';
+SET postgis.gdal_datapath = '';
SELECT
CASE
WHEN strpos(postgis_gdal_version(), 'GDAL_DATA') <> 0
THEN NULL
ELSE TRUE
END;
-SET postgis.gdal.datapath = default;
+SET postgis.gdal_datapath = default;
SELECT
CASE
WHEN strpos(postgis_gdal_version(), 'GDAL_DATA') <> 0