From: Tom Lane Date: Thu, 24 Jan 2002 18:28:15 +0000 (+0000) Subject: Fix documentation misstatement: OLD is not valid in ON SELECT. X-Git-Tag: REL7_2_RC2~9 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=db42e32a74954cd017b3a284306a14900697b3ff;p=postgresql Fix documentation misstatement: OLD is not valid in ON SELECT. --- diff --git a/doc/src/sgml/ref/create_rule.sgml b/doc/src/sgml/ref/create_rule.sgml index 0890faa9ce..6a03cfbd66 100644 --- a/doc/src/sgml/ref/create_rule.sgml +++ b/doc/src/sgml/ref/create_rule.sgml @@ -1,5 +1,5 @@ @@ -109,8 +109,8 @@ NOTHING object). new is valid in ON INSERT and ON UPDATE rules to refer to the new row being inserted or updated. - old is valid in ON SELECT, ON UPDATE, and ON DELETE - rules to refer to the existing row being selected, updated, or deleted. + old is valid in ON UPDATE and ON DELETE + rules to refer to the existing row being updated or deleted.