aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2014-08-15 09:57:46 +0300
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2014-08-15 10:01:31 +0300
commitef153ecc55a8f945d576a1e69a51b91046f24bb1 (patch)
tree756848bb81e4015a54f51ac7cf2f946c284f5c3e
parentc07693f0c7cde7d269025fe714a124223a189e71 (diff)
downloadpostgresql-ef153ecc55a8f945d576a1e69a51b91046f24bb1.tar.gz
postgresql-ef153ecc55a8f945d576a1e69a51b91046f24bb1.zip
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
-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 &gt; 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: