1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Update rules man pages.

This commit is contained in:
Bruce Momjian
2000-05-20 11:38:25 +00:00
parent c99e851eea
commit 0d62ecdf72

View File

@ -1,5 +1,5 @@
<!-- <!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_rule.sgml,v 1.15 2000/04/12 20:07:13 momjian Exp $ $Header: /cvsroot/pgsql/doc/src/sgml/ref/create_rule.sgml,v 1.16 2000/05/20 11:38:25 momjian Exp $
Postgres documentation Postgres documentation
--> -->
@ -320,7 +320,8 @@ CREATE RULE example_4 AS
CREATE RULE example_5 AS CREATE RULE example_5 AS
ON INERT TO emp WHERE new.salary > 5000 ON INERT TO emp WHERE new.salary > 5000
DO DO
UPDATE NEWSET SET salary = 5000; UPDATE emp SET salary = 5000
WHERE emp.oid = new.oid;
</programlisting> </programlisting>
</para> </para>
</refsect1> </refsect1>