gis
.gobs
Tables
(current)
Columns
Constraints
Relationships
Orphan Tables
Anomalies
Routines
trg_parse_indicator_paths()
Parameters
Name
Type
Mode
IN
Definition
DECLARE _output integer; BEGIN IF TG_OP = 'INSERT' OR NEW.id_paths != OLD.id_paths THEN SELECT gobs.parse_indicator_paths(NEW.id, NEW.id_paths) INTO _output; END IF; RETURN NEW; END;