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

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

There is a newer version: 6.6.7
Show newest version
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;