From: Neil Conway Date: Mon, 14 Feb 2005 00:54:26 +0000 (+0000) Subject: Minor consistency improvement. X-Git-Tag: REL8_1_0BETA1~1380 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=73f5c9d90ecffaf711d48ada1ac02e6fd8bb9b34;p=postgresql Minor consistency improvement. --- diff --git a/doc/src/sgml/plpgsql.sgml b/doc/src/sgml/plpgsql.sgml index a4bef849bd..6284b793b0 100644 --- a/doc/src/sgml/plpgsql.sgml +++ b/doc/src/sgml/plpgsql.sgml @@ -1,5 +1,5 @@ @@ -2677,7 +2677,7 @@ CREATE OR REPLACE FUNCTION process_emp_audit() RETURNS TRIGGER AS $emp_audit$ END IF; RETURN NULL; -- result is ignored since this is an AFTER trigger END; -$emp_audit$ language plpgsql; +$emp_audit$ LANGUAGE plpgsql; CREATE TRIGGER emp_audit AFTER INSERT OR UPDATE OR DELETE ON emp