summaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorHeikki Linnakangas2014-08-15 06:57:46 +0000
committerHeikki Linnakangas2014-08-15 07:01:31 +0000
commitef153ecc55a8f945d576a1e69a51b91046f24bb1 (patch)
tree756848bb81e4015a54f51ac7cf2f946c284f5c3e /doc/src
parentc07693f0c7cde7d269025fe714a124223a189e71 (diff)
Doc fix: New York State's capital is Albany.
The inheritance example in the manual implies that the capital of New York is New York City, but in reality it's Albany. George Hartzell
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/ddl.sgml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/ddl.sgml b/doc/src/sgml/ddl.sgml
index 3b7fff4846c..ca8a45e9c63 100644
--- a/doc/src/sgml/ddl.sgml
+++ b/doc/src/sgml/ddl.sgml
@@ -2136,7 +2136,7 @@ WHERE c.altitude > 500 AND c.tableoid = p.oid;
following <command>INSERT</command> statement will fail:
<programlisting>
INSERT INTO cities (name, population, altitude, state)
-VALUES ('New York', NULL, NULL, 'NY');
+VALUES ('Albany', NULL, NULL, 'NY');
</programlisting>
We might hope that the data would somehow be routed to the
<structname>capitals</structname> table, but this does not happen: