From: Bruce Momjian Date: Tue, 22 Apr 2014 21:54:42 +0000 (-0400) Subject: doc: improve CREATE RULE event list X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=c27bf777cf4e05d318e202316857b354cc2f7a5a;p=users%2Fheikki%2Fpostgres.git doc: improve CREATE RULE event list Patch by Fujii Masao Report by Emanuel Calvo --- diff --git a/doc/src/sgml/ref/create_rule.sgml b/doc/src/sgml/ref/create_rule.sgml index d3212b5e5a..677766a2d5 100644 --- a/doc/src/sgml/ref/create_rule.sgml +++ b/doc/src/sgml/ref/create_rule.sgml @@ -24,6 +24,10 @@ PostgreSQL documentation CREATE [ OR REPLACE ] RULE name AS ON event TO table_name [ WHERE condition ] DO [ ALSO | INSTEAD ] { NOTHING | command | ( command ; command ... ) } + +where event can be one of: + + SELECT | INSERT | UPDATE | DELETE