Do not dump identity sequences with excluded parent table This commit prevents a crash of pg_dump caused by the exclusion of a table which has identity columns, as the table would be correctly excluded but not its identity sequence. In order to fix that, identity sequences are excluded if the parent table is defined as such. Knowing about such sequences has no meaning without their parent table anyway.
Reported-by: Andy Abelisto Author: David Rowley Reviewed-by: Peter Eisentraut, Michael Paquier Discussion: https://postgr.es/m/[email protected] Backpatch-through: 10 Branch ------ master Details ------- https://git.postgresql.org/pg/commitdiff/b965f2617184032687037547204e1db1c1e1a56c Modified Files -------------- src/bin/pg_dump/pg_dump.c | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-)
