[postgis-tickets] r17289 - Tweak C signature deprecation error
Sandro Santilli
strk at kbt.io
Wed Mar 6 02:08:49 PST 2019
Author: strk
Date: 2019-03-06 02:08:49 -0800 (Wed, 06 Mar 2019)
New Revision: 17289
Modified:
trunk/postgis/postgis_legacy.c
Log:
Tweak C signature deprecation error
Drop assumptions about installation being based on extension
Modified: trunk/postgis/postgis_legacy.c
===================================================================
--- trunk/postgis/postgis_legacy.c 2019-03-04 22:09:29 UTC (rev 17288)
+++ trunk/postgis/postgis_legacy.c 2019-03-06 10:08:49 UTC (rev 17289)
@@ -43,7 +43,7 @@
{ \
ereport(ERROR, \
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED), \
- errmsg("function %s is out of date since PostGIS %s. Run: ALTER EXTENSION postgis UPDATE;", \
+ errmsg("function %s is out of date since PostGIS %s, do you need to update procs ?", \
__func__, \
version))); \
PG_RETURN_POINTER(NULL); \
More information about the postgis-tickets
mailing list