Index: openacs-4/packages/soap-gateway/sql/postgresql/soap-gateway-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/soap-gateway/sql/postgresql/soap-gateway-create.sql,v diff -u -r1.2 -r1.3 --- openacs-4/packages/soap-gateway/sql/postgresql/soap-gateway-create.sql 17 Dec 2018 09:48:45 -0000 1.2 +++ openacs-4/packages/soap-gateway/sql/postgresql/soap-gateway-create.sql 25 Oct 2020 18:57:08 -0000 1.3 @@ -531,21 +531,21 @@ -- trigger functions create function sg_methods__itrg () -returns opaque as ' +returns trigger as ' begin perform sg_namespaces__dirty(new.namespace_id); return new; end;' language 'plpgsql'; create function sg_methods__dtrg () -returns opaque as ' +returns trigger as ' begin perform sg_namespaces__dirty(old.namespace_id); return old; end;' language 'plpgsql'; create function sg_methods__utrg () -returns opaque as ' +returns trigger as ' begin perform sg_namespaces__dirty(new.namespace_id); if new.namespace_id <> old.namespace_id then