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
This commit is contained in:
Heikki Linnakangas 2014-08-15 09:57:46 +03:00
parent c07693f0c7
commit ef153ecc55

View File

@ -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: