1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
CREATE TABLE upgrade_test(g1 geometry, g2 geography);
INSERT INTO upgrade_test(g1,g2) VALUES
('POINT(0 0)', 'LINESTRING(0 0, 1 1)'),
('POINT(1 0)', 'LINESTRING(0 1, 1 1)');
-- We know upgrading with an st_union() based view
-- fails unless you're on PostgreSQL 12, so we don't
-- even try that.
--
-- We could re-enable this test IF we fix the upgrade
-- in pre-12 versions. Refer to
-- https://trac.osgeo.org/postgis/ticket/4386
--
DO $BODY$
DECLARE
vernum INT;
BEGIN
show server_version_num INTO vernum;
IF vernum >= 120000
THEN
RAISE DEBUG '12+ server (%)', vernum;
CREATE VIEW upgrade_view_test_union AS
SELECT ST_Union(g1) FROM upgrade_test;
END IF;
END;
$BODY$ LANGUAGE 'plpgsql';
-- Add view using overlay functions
CREATE VIEW upgrade_view_test_overlay AS
SELECT
ST_Intersection(g1, g1) as geometry_intersection,
ST_Intersection(g2, g2) as geography_intersection,
ST_Difference(g1, g1) as geometry_difference,
ST_SymDifference(g1, g1) as geometry_symdifference
FROM upgrade_test;
-- Add view using unaryunion function
-- NOTE: 2.0.0 introduced ST_UnaryUnion
CREATE VIEW upgrade_view_test_unaryunion AS
SELECT
ST_UnaryUnion(g1) as geometry_unaryunion
FROM upgrade_test;
-- Add view using unaryunion function
-- NOTE: 2.2.0 introduced ST_Subdivide
CREATE VIEW upgrade_view_test_subdivide AS
SELECT
ST_Subdivide(g1, 256) as geometry_subdivide
FROM upgrade_test;
-- Add view using ST_ForceX function
-- NOTE: 3.1.0 changed them from taking only geometry
-- to also take optional zvalue/mvalue params
CREATE VIEW upgrade_view_test_force_dims AS
SELECT
ST_Force3D(g1) as geometry_force3d,
ST_Force3DZ(g1) as geometry_force3dz,
ST_Force3DM(g1) as geometry_force3dm,
ST_Force4D(g1) as geometry_force4d
FROM upgrade_test;
-- Add view using ST_AsKML function
-- NOTE: 2.0.0 changed them to add default params
CREATE VIEW upgrade_view_test_askml AS
SELECT
ST_AsKML(g1) as geometry_askml,
ST_AsKML(g2) as geography_askml
FROM upgrade_test;
-- Add view using ST_DWithin function
-- NOTE: 3.0.0 changed them to add default params
CREATE VIEW upgrade_view_test_dwithin AS
SELECT
ST_DWithin(g1::text, g1::text, 1) as text_dwithin,
ST_DWithin(g2, g2, 1) as geography_dwithin
FROM upgrade_test;
-- Add view using ST_ClusterKMeans windowing function
-- NOTE: 3.2.0 changed it to add max_radius parameter
CREATE VIEW upgrade_view_test_clusterkmeans AS
SELECT
ST_ClusterKMeans(g1, 1) OVER ()
FROM upgrade_test;
-- Break probin of all postgis functions, as we expect
-- the upgrade procedure to replace them all
UPDATE pg_proc SET probin = probin || '-uninstalled'
WHERE probin like '%postgis%';
|