From ef153ecc55a8f945d576a1e69a51b91046f24bb1 Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Fri, 15 Aug 2014 09:57:46 +0300 Subject: [PATCH] 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 --- doc/src/sgml/ddl.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 INSERT statement will fail: INSERT INTO cities (name, population, altitude, state) -VALUES ('New York', NULL, NULL, 'NY'); +VALUES ('Albany', NULL, NULL, 'NY'); We might hope that the data would somehow be routed to the capitals table, but this does not happen: