view schema/updates/1423/01.axis_as_multilinestring.sql @ 5541:29804c8e817d aggregate-gm-import-logging

WIP: Handle rest correctly.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Tue, 26 Oct 2021 02:02:23 +0200
parents e8b2dc771f9e
children
line wrap: on
line source

-- Cannot alter type of a column used in a trigger definition
DROP TRIGGER waterway_axis_wtwaxs_unique ON waterway.waterway_axis;

ALTER TABLE waterway.waterway_axis
    ALTER wtwaxs TYPE geography(MULTILINESTRING, 4326)
        USING ST_Multi(CAST(wtwaxs AS geometry));

-- Re-create trigger
CREATE CONSTRAINT TRIGGER waterway_axis_wtwaxs_unique
    AFTER INSERT OR UPDATE OF wtwaxs ON waterway.waterway_axis
    FOR EACH ROW EXECUTE FUNCTION prevent_st_equals('wtwaxs');