PostGIS 2.5.0
-2018/09/XX
+2018/09/23
WARNING: If compiling with PostgreSQL+JIT, LLVM >= 6 is required
Supported PostgreSQL versions for this release are:
PostgreSQL 9.4 - PostgreSQL 12 (in development)
<subtitle>Release Notes</subtitle>
<sect1>
<title>Release 2.5.0</title>
- <para>Release date: 2018/09/xx</para>
+ <para>Release date: 2018/09/23</para>
<para>If compiling with PostgreSQL+JIT, LLVM >= 6 is required</para>
<para>Supported PostgreSQL versions for this release are:
PostgreSQL 9.4 - PostgreSQL 12 (in development)
Datum RASTER_to_bytea(PG_FUNCTION_ARGS);
+/** obsolete as of 2.5.0 stubbing for smoother upgrade from 2.4 **/
+Datum RASTER_to_binary(PG_FUNCTION_ARGS);
+
Datum RASTER_noop(PG_FUNCTION_ARGS);
+/**
+ * Legacy return error if called
+ * Removed in PostGIS 2.5.0
+ */
+PG_FUNCTION_INFO_V1(RASTER_to_binary);
+Datum RASTER_to_binary(PG_FUNCTION_ARGS)
+{
+
+ elog(ERROR, "RASTER_to_binary: This function is out of date. Run ALTER EXTENSION postgis UPDATE; to fix");
+
+}
+
/**
* Input is Hex WKB
* Used as the input function of the raster type