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

Commit eedfac6

Browse files
committed
Correct UNDER syntax.
1 parent 59e2bf3 commit eedfac6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/src/sgml/advanced.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/advanced.sgml,v 1.18 2000/12/22 18:57:49 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/advanced.sgml,v 1.19 2000/12/30 19:11:45 petere Exp $
33
-->
44

55
<chapter id="advanced">
@@ -33,9 +33,9 @@ CREATE TABLE cities (
3333
altitude int -- (in ft)
3434
);
3535

36-
CREATE TABLE capitals (
36+
CREATE TABLE capitals UNDER cities (
3737
state char(2)
38-
) UNDER cities;
38+
);
3939
</programlisting>
4040

4141
In this case, an instance of capitals <firstterm>inherits</firstterm> all

0 commit comments

Comments
 (0)