Changes between Initial Version and Version 1 of Ticket #5222, comment 8


Ignore:
Timestamp:
Aug 31, 2022, 1:18:45 PM (23 months ago)
Author:
marc3932

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #5222, comment 8

    initial v1  
    77--And then try your upgrade again.
    88
    9 --SELECT postgis_extensions_upgrade();
     9
     10{{{
     11SELECT postgis_extensions_upgrade();
     12}}}
     13
    1014
    1115NOTICE:  Extension postgis_sfcgal is not available or not packagable for some reason
     
    1721SQL state: 22023
    1822
    19 --SELECT * FROM pg_available_extensions WHERE name LIKE 'postgis';
     23
     24{{{
     25SELECT * FROM pg_available_extensions WHERE name LIKE 'postgis%';
     26}}}
     27
    2028
    2129"postgis"       "3.2.2" "3.2.2" "PostGIS geometry and geography spatial types and functions"
     
    2331--only the postgis extension is installed!!!
    2432
    25 --CREATE EXTENSION postgis_raster;
     33
     34{{{
     35CREATE EXTENSION postgis_raster;
     36}}}
     37
    2638
    2739ERROR: PostGIS Raster is already installed in schema 'public'CONTEXT: PL/pgSQL function inline_code_block line 10 at RAISESQL state: P0001
    2840
    29 --SELECT postgis_full_version();
     41
     42{{{
     43SELECT postgis_full_version();
     44}}}
     45
    3046
    3147"POSTGIS=""3.2.2 3.2.2"" [EXTENSION] PGSQL=""110"" GEOS=""3.10.3-CAPI-1.16.1"" PROJ=""7.2.1"" GDAL=""GDAL 2.2.4, released 2018/03/19 GDAL_DATA not found"" LIBXML=""2.9.9"" LIBJSON=""0.12"" LIBPROTOBUF=""1.2.1"" WAGYU=""0.5.0 (Internal)"" RASTER (raster lib from ""2.5.2 r17328"" need upgrade) [UNPACKAGED!] (raster procs from ""2.5.2 r17328"" need upgrade)"