view schema/updates/1008/01.import-delete.sql @ 5154:a33f1d51d1b7

Changed FD coordinate calculation from polygon to multipolygon.
author Raimund Renkert <raimund@renkert.org>
date Wed, 01 Apr 2020 15:48:07 +0200
parents 4f2f34f5d14d
children
line wrap: on
line source

DROP FUNCTION  import.del_import();

CREATE OR REPLACE FUNCTION import.del_import(imp_id int) RETURNS void AS
$$
DECLARE
    tmp RECORD;
BEGIN
    FOR tmp IN
        SELECT * FROM import.track_imports WHERE import_id = imp_id AND NOT deletion
    LOOP
        EXECUTE format('DELETE FROM %s WHERE id = $1', tmp.relation) USING tmp.key;
    END LOOP;
END;
$$
LANGUAGE plpgsql;