Fix two issues with HEADER MATCH in COPY
authorMichael Paquier <[email protected]>
Thu, 23 Jun 2022 01:49:20 +0000 (10:49 +0900)
committerMichael Paquier <[email protected]>
Thu, 23 Jun 2022 01:49:20 +0000 (10:49 +0900)
commitca7a0d1d368216e89359c63531a4df0b99a437e4
treef662791ab4a78f5dff1969e7b532f48442c7faf7
parenteba331ae2aad781d498f8a424a12185146c7f1f7
Fix two issues with HEADER MATCH in COPY

072132f0 used the attnum offset to access the raw_fields array when
checking that the attribute names of the header and of the relation
match, leading to incorrect results or even crashes if the attribute
numbers of a relation are changed, like on a dropped attribute.  This
fixes the logic to use the correct attribute names for the header
matching requirements.

Also, this commit disallows HEADER MATCH in COPY TO as there is no
validation that can be done in this case.

The tests are expanded for HEADER MATCH with COPY FROM and dropped
columns, with cases where a relation has a dropped and re-added column,
as well as a reduced set of columns.

Author: Julien Rouhaud
Reviewed-by: Peter Eisentraut, Michael Paquier
Discussion: https://postgr.es/m/20220607154744.vvmitnqhyxrne5ms@jrouhaud
doc/src/sgml/ref/copy.sgml
src/backend/commands/copy.c
src/backend/commands/copyfromparse.c
src/test/regress/expected/copy.out
src/test/regress/sql/copy.sql