diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2019-05-06 12:23:49 -0400 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2019-05-06 12:23:49 -0400 |
commit | 40353bcc67cd4a2b70179faf4d90984196d4ffff (patch) | |
tree | 87f4ab90848883f35d3b3764bcedb21aba4a3b40 /doc/src | |
parent | f4540a9c9ca163c8afee2259c6425d82e1aea595 (diff) |
Revert "Make pg_dump emit ATTACH PARTITION instead of PARTITION OF"
... and fallout (from branches 10, 11 and master). The change was
ill-considered, and it broke a few normal use cases; since we don't have
time to fix it, we'll try again after this week's minor releases.
Reported-by: Rushabh Lathia
Discussion: https://postgr.es/m/CAGPqQf0iQV=PPOv2Btog9J9AwOQp6HmuVd6SbGTR_v3Zp2XT1w@mail.gmail.com
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/release-10.sgml | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/doc/src/sgml/release-10.sgml b/doc/src/sgml/release-10.sgml index 80df50ce08b..fc90f873d1a 100644 --- a/doc/src/sgml/release-10.sgml +++ b/doc/src/sgml/release-10.sgml @@ -443,23 +443,6 @@ <listitem> <para> - Make <application>pg_dump</application> recreate table partitions - using <command>ATTACH PARTITION</command> instead - of <command>CREATE TABLE ... PARTITION OF</command> (David Rowley) - </para> - - <para> - This avoids various corner-case problems, notably that dump and - restore might unexpectedly alter a partition's column ordering. - It also means that a selective restore of the partition can succeed - even if its parent partitioned table isn't restored. - (The <command>ATTACH PARTITION</command> will fail of course, but - the partition table itself can be created and populated.) - </para> - </listitem> - - <listitem> - <para> Avoid crash in <filename>contrib/postgres_fdw</filename> when a query using remote grouping or aggregation has a <literal>SELECT</literal>-list item that is an uncorrelated |