Skip to content

Commit feed073

Browse files
committed
Fix broken markup.
1 parent 7fb9090 commit feed073

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

doc/src/sgml/ddl.sgml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/ddl.sgml,v 1.58 2006/07/02 01:58:36 momjian Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/ddl.sgml,v 1.59 2006/07/03 16:43:14 tgl Exp $ -->
22

33
<chapter id="ddl">
44
<title>Data Definition</title>
@@ -2078,6 +2078,7 @@ VALUES ('New York', NULL, NULL, 'NY');
20782078
parent. Similarly an inheritance link can be removed from a child using the
20792079
<command>ALTER TABLE</command> using the <command>NO INHERIT</command>
20802080
subform.
2081+
</para>
20812082

20822083
<para>
20832084
One convenient way to create a compatible table to be a new child is using
@@ -2086,7 +2087,8 @@ VALUES ('New York', NULL, NULL, 'NY');
20862087
caveat below regarding constraints). Alternatively a compatible table can
20872088
be created by first creating a new child using <command>CREATE
20882089
TABLE</command> then removing the inheritance link with <command>ALTER
2089-
TABLE</command>. </para>
2090+
TABLE</command>.
2091+
</para>
20902092

20912093
<para>
20922094
A parent table cannot be dropped while any
@@ -2234,7 +2236,7 @@ VALUES ('New York', NULL, NULL, 'NY');
22342236
be accessed for a query. Whereas the alternative, adding those columns
22352237
to every index, increases space usage which can erase any
22362238
performance gain.
2237-
<para>
2239+
</para>
22382240

22392241
<para>
22402242
When most of the heavily accessed area of the table is in a single

0 commit comments

Comments
 (0)