All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sql.extension.rtree.rtree_trigger_update4 Maven / Gradle / Ivy

The newest version!
CREATE TRIGGER "rtree___update4" AFTER UPDATE ON ""
  WHEN OLD."" != NEW."" AND
       (NEW."" ISNULL OR ST_IsEmpty(NEW.""))
BEGIN
  DELETE FROM "rtree__" WHERE id IN (OLD."", NEW."");
END;