diff options
author | Peter Eisentraut | 2017-04-21 23:42:01 +0000 |
---|---|---|
committer | Peter Eisentraut | 2017-04-21 23:42:01 +0000 |
commit | f58b664393dcfd02c2f57b3ff20fc0aee6dfebf1 (patch) | |
tree | cac28d3a738564885047625361b9fb0d92a03ccb | |
parent | 3e51725b3854e80b84347774516e988fce12f46d (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 <[email protected]>
-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 ca1b767d69..bcbc170335 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> |