sql.extension.rtree.rtree_trigger_update2 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geopackage-core Show documentation
Show all versions of geopackage-core Show documentation
Core functionality for GeoPackage implementations
CREATE TRIGGER "rtree___update2" AFTER UPDATE OF "" ON ""
WHEN OLD."" = NEW."" AND
(NEW."" ISNULL OR ST_IsEmpty(NEW.""))
BEGIN
DELETE FROM "rtree__" WHERE id = OLD."";
END;
© 2015 - 2025 Weber Informatics LLC | Privacy Policy