diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2017-04-21 19:42:01 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2017-04-21 19:44:09 -0400 |
commit | 38a6e57db2e99d22a15e71359cd090da17fd77b0 (patch) | |
tree | 7f1ad8175a7470d758e7ec7a7d85f113b631f2b6 | |
parent | 899960b9fec20d55ebc8a6b7e22a90d0f65d4d17 (diff) |
doc: Update link
The reference "That is the topic of the next section." has been
incorrect since the materialized views documentation got inserted
between the section "rules-views" and "rules-update".
Author: Zertrin <postgres_wiki@zertrin.org>
-rw-r--r-- | doc/src/sgml/rules.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/rules.sgml b/doc/src/sgml/rules.sgml index 311fc8b0a18..6e8b479fc31 100644 --- a/doc/src/sgml/rules.sgml +++ b/doc/src/sgml/rules.sgml @@ -862,7 +862,7 @@ SELECT t1.a, t2.b, t1.ctid FROM t1, t2 WHERE t1.a = t2.a; <command>UPDATE</command>, and <command>DELETE</command> commands on a view. These rules will rewrite the command, typically into a command that updates one or more tables, rather than views. That is the topic - of the next section. + of <xref linkend="rules-update">. </para> <para> |