pgsql: Only evaluate default values as required when doing COPY FROM

2023-10-01 Thread Andrew Dunstan
Only evaluate default values as required when doing COPY FROM Commit 9f8377f7a2 was a little too eager in fetching default values. Normally this would not matter, but if the default value is not valid for the type (e.g. a varchar that's too long) it caused an unnecessary error. Complaint and fix

pgsql: Only evaluate default values as required when doing COPY FROM

2023-10-01 Thread Andrew Dunstan
Only evaluate default values as required when doing COPY FROM Commit 9f8377f7a2 was a little too eager in fetching default values. Normally this would not matter, but if the default value is not valid for the type (e.g. a varchar that's too long) it caused an unnecessary error. Complaint and fix