Changes between Version 1 and Version 5 of Ticket #3896


Ignore:
Timestamp:
Oct 11, 2017, 8:20:57 AM (7 years ago)
Author:
robe
Comment:

I updated the function to return postgis_full_version() details of their install.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3896 – Description

    v1 v5  
    1313
    1414{{{
    15 CREATE OR REPLACE FUNCTION postgis_extensions_upgrade() RETURNS void AS
     15CREATE OR REPLACE FUNCTION postgis_extensions_upgrade() RETURNS text AS
    1616$$
    1717BEGIN
     
    2424    RAISE NOTICE '%', rec.sql;
    2525END LOOP; END;
     26
     27RETURN postgis_full_version();
    2628
    2729END