]> granicus.if.org Git - postgresql/commit
Code review for pg_dump's handling of ALTER INDEX ATTACH PARTITION.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 28 Aug 2018 23:33:04 +0000 (19:33 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 28 Aug 2018 23:33:04 +0000 (19:33 -0400)
commit18f6258e5ee8ea8d9c06bd58655cf8c6e4f1016f
tree21c25aa269d1deb3640eb0a3123fd1a67670dc9f
parent8ede2691d65e4c0aa1ae23453b5bed63f9a36254
Code review for pg_dump's handling of ALTER INDEX ATTACH PARTITION.

Ensure the TOC entry is marked with the correct schema, so that its
name is as unique as the index's is.

Fix the dependencies: we want dependencies from this TOC entry to the
two indexes it depends on, and we don't care (at least not for this
purpose) what order the indexes are created in.  Also, add dependencies
on the indexes' underlying tables.  Those might seem pointless given
the index dependencies, but they are helpful to cue parallel restore
to avoid running the ATTACH PARTITION in parallel with other DDL on
the same tables.

Discussion: https://postgr.es/m/10817.1535494963@sss.pgh.pa.us
src/bin/pg_dump/common.c
src/bin/pg_dump/pg_dump.c