2017/09/xx
* New Features *
-
+ - #3822, Have postgis_full_version() also show and check version of
+ PostgreSQL the scripts were built against (Sandro Santilli)
- #2411, curves support in ST_Reverse (Sandro Santilli)
- #2951, ST_Centroid for geography (Danny Götte)
- #3788, Allow postgis_restore.pl to work on directory-style (-Fd) dumps
fullver = fullver || ' (liblwgeom version mismatch: "' || liblwgeomver || '")';
END IF;
+ fullver = fullver || ' PGSQL="' || pgsql_scr_ver || '"';
+ IF pgsql_scr_ver != pgsql_ver THEN
+ fullver = fullver || ' (procs need upgrade for use with "' || pgsql_ver || '")';
+ END IF;
IF geosver IS NOT NULL THEN
fullver = fullver || ' GEOS="' || geosver || '"';
fullver = fullver || ' (core procs from "' || dbproc || '" need upgrade)';
END IF;
- IF pgsql_scr_ver != pgsql_ver THEN
- fullver = fullver || ' (procs built against PostgreSQL "' || pgsql_scr_ver || '" need upgrade)';
- END IF;
-
IF topo_scr_ver IS NOT NULL THEN
fullver = fullver || ' TOPOLOGY';
IF topo_scr_ver != relproc THEN