pgsql: Apply identity sequence values on COPY - Mailing list pgsql-committers

From Peter Eisentraut
Subject pgsql: Apply identity sequence values on COPY
Date
Msg-id E1eNJs8-0005T6-6h@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Apply identity sequence values on COPY

A COPY into a table should apply identity sequence values just like it
does for ordinary defaults.  This was previously forgotten, leading to
null values being inserted, which in turn would fail because identity
columns have not-null constraints.

Author: Michael Paquier <michael.paquier@gmail.com>
Reported-by: Steven Winfield <steven.winfield@cantabcapital.com>
Bug: #14952

Branch
------
REL_10_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/ee5b595493e1609903d55709853f5276ba85c81d

Modified Files
--------------
src/backend/commands/copy.c            | 16 ++++++++++++++--
src/test/regress/expected/identity.out | 13 +++++++++++++
src/test/regress/sql/identity.sql      | 17 +++++++++++++++++
3 files changed, 44 insertions(+), 2 deletions(-)


pgsql-committers by date:

Previous
From: Andres Freund
Date:
Subject: Re: [HACKERS] [COMMITTERS] pgsql: Fix freezing of a dead HOT-updatedtuple
Next
From: Peter Eisentraut
Date:
Subject: pgsql: Accept SCRAM channel binding enabled clients