diff options
author | Bruce Momjian <bruce@momjian.us> | 2020-08-05 17:12:09 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2020-08-05 17:12:09 -0400 |
commit | d06c96185c427e34be8cfe7513e2195842423ea2 (patch) | |
tree | 12933c3914cff0ebc797dadd2c01010c117c8565 | |
parent | 1fac10d9fd8d836079ef66eec24cdcbf5979e68e (diff) |
doc: clarify "state" table reference in tutorial
Reported-by: Vyacheslav Shablistyy
Discussion: https://postgr.es/m/159586122762.680.1361378513036616007@wrigleys.postgresql.org
Backpatch-through: 9.5
-rw-r--r-- | doc/src/sgml/advanced.sgml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/src/sgml/advanced.sgml b/doc/src/sgml/advanced.sgml index 9ec389dda1b..1586021c2e7 100644 --- a/doc/src/sgml/advanced.sgml +++ b/doc/src/sgml/advanced.sgml @@ -629,8 +629,9 @@ CREATE TABLE capitals ( <firstterm>parent</firstterm>, <classname>cities</classname>. The type of the column <structfield>name</structfield> is <type>text</type>, a native <productname>PostgreSQL</productname> - type for variable length character strings. State capitals have - an extra column, <structfield>state</>, that shows their state. In + type for variable length character strings. The + <classname>capitals</> table has + an extra column, <structfield>state</>, which shows their states. In <productname>PostgreSQL</productname>, a table can inherit from zero or more other tables. </para> |