Re: pgsql: Fix missing call to table_finish_bulk_insert during COPY

2019-07-01 Thread David Rowley
On Tue, 2 Jul 2019 at 01:24, David Rowley wrote: > src/backend/commands/copy.c | 21 ++--- > 1 file changed, 14 insertions(+), 7 deletions(-) Looking at buildfarm now. -- David Rowley http://www.2ndQuadrant.com/ PostgreSQL Development, 24x7 Support, Training &

pgsql: Fix missing call to table_finish_bulk_insert during COPY

2019-07-01 Thread David Rowley
Fix missing call to table_finish_bulk_insert during COPY 86b85044e abstracted calls to heap functions in COPY FROM to support a generic table AM. However, when performing a copy into a partitioned table, this commit neglected to call table_finish_bulk_insert for each partition. Before 86b85044e,