view schema/updates/1438/01.remove_duplicate_fairway_areas.sql @ 5279:a17c2a0b8e44

client: use current time in the review layer request * avoid using value from time slider in the request for review layer
author Fadi Abbud <fadi.abbud@intevation.de>
date Thu, 11 Jun 2020 15:50:11 +0200
parents 20f338cb4d48
children
line wrap: on
line source

-- Remove entries that do not suffice the requirements set out by the
-- constraint trigger on fairway_dimensions, but that could be left over
-- from an import run before the constraint trigger was in place
DELETE FROM waterway.fairway_dimensions fd
    USING waterway.fairway_dimensions fd_self
    WHERE ST_Equals(CAST(fd.area AS geometry), CAST(fd_self.area AS geometry))
        AND fd.validity && fd_self.validity
        AND fd.staging_done = fd_self.staging_done
        AND fd.id < fd_self.id