diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2014-08-15 09:57:46 +0300 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2014-08-15 10:01:31 +0300 |
commit | ef153ecc55a8f945d576a1e69a51b91046f24bb1 (patch) | |
tree | 756848bb81e4015a54f51ac7cf2f946c284f5c3e | |
parent | c07693f0c7cde7d269025fe714a124223a189e71 (diff) | |
download | postgresql-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.sgml | 2 |
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: |