Re: [HACKERS] pg_dump segfaults with publication

2017-03-10 Thread Peter Eisentraut
On 3/6/17 03:06, Amit Langote wrote: > pg_dump segfaults if there are more than one DO_PUBLICATION_REL objects to > dump. Fix committed with a test case. Thanks. -- Peter Eisentraut http://www.2ndQuadrant.com/ PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

[HACKERS] pg_dump segfaults with publication

2017-03-06 Thread Amit Langote
Hi, pg_dump segfaults if there are more than one DO_PUBLICATION_REL objects to dump. create table foo (a int); create publication foo_pub; alter publication foo_pub add table foo; $ pg_dump create table bar (a int); alter publication foo_pub add table bar; $ pg_dump -s Segmentation fault