Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 479cba8

Browse files
committed
Example rules do not work.
CREATE RULE bad_rule_combination_1 AS ON SELECT TO emp DO INSTEAD SELECT * FROM toyemp; CREATE RULE bad_rule_combination_2 AS ON SELECT TO toyemp DO INSTEAD SELECT * FROM emp; Tatsuo Ishii
1 parent 3f45796 commit 479cba8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/src/sgml/ref/create_rule.sgml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_rule.sgml,v 1.26 2001/09/07 20:52:30 tgl Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_rule.sgml,v 1.27 2001/09/14 08:19:55 ishii Exp $
33
Postgres documentation
44
-->
55

@@ -228,14 +228,14 @@ CREATE
228228
<example>
229229
<title>Example of a circular rewrite rule combination:</title>
230230
<programlisting>
231-
CREATE RULE bad_rule_combination_1 AS
231+
CREATE RULE "_RETemp" AS
232232
ON SELECT TO emp
233233
DO INSTEAD
234234
SELECT * FROM toyemp;
235235
</programlisting>
236236

237237
<programlisting>
238-
CREATE RULE bad_rule_combination_2 AS
238+
CREATE RULE "_RETtoyemp" AS
239239
ON SELECT TO toyemp
240240
DO INSTEAD
241241
SELECT * FROM emp;

0 commit comments

Comments
 (0)