Re: Reject unsupported COPY FROM targets before analyzing WHERE clause - Mailing list pgsql-hackers

From ZizhuanLiu X-MAN
Subject Re: Reject unsupported COPY FROM targets before analyzing WHERE clause
Date
Msg-id tencent_CAB31AA7E0B9DA50689927AABED52CA3A909@qq.com
Whole thread
List pgsql-hackers
>Hi Kyotaro-san,
>
>Thank you very much for the comments.
>
>I still think the unsupported-target check should happen first, because that is the main problem. If a user spends
timefixing a WHERE clause error, then the command to fails again with “cannot copy to xxx”, the user may feel
frustrated.
>
>But I am convinced by your point about making this consistent with COPY TO. So let’s use this patch to fix the “not
waitingfor input” problem first. I will try to work on the unsupported-target-check ordering for v20, considering COPY
TOand COPY FROM together. 
>
>PFA v2. The patch is much simpler now. It only moves the unsupported-target check to BeginCopyFrom(), so the check
happensbefore waiting for input. 
>
>Best regards,
>--
>Chao Li (Evan)
>HighGo Software Co., Ltd.
>https://www.highgo.com/


Hi, everyone

Thanks a lot for the patch and detailed comments.

In most scenarios, after constructing the `CopyFromState` within `BeginCopyFrom()`,
we immediately pass it into `CopyFrom()` and invoke the function. By moving the relevant
validation checks from `CopyFrom()` into `BeginCopyFrom()`, we can deliver error feedback much earlier.

This way, validation will be performed in advance before waiting for input sources
({ 'filename' | PROGRAM 'command' | STDIN }) to be ready, so that errors can be
reported to the client side in a timelier manner.

Besides, `file_fdw.c` also stores the return value of `BeginCopyFrom()` inside its callback parameters,
so it will equally benefit from this earlier validation.

This patch looks good to me.


regards,
--
ZizhuanLiu (X-MAN) 
44973863@qq.com











pgsql-hackers by date:

Previous
From: Thom Brown
Date:
Subject: Re: SQL/JSON json_table plan clause
Next
From: Tom Lane
Date:
Subject: Re: document the dangers of granting TRIGGER or REFERENCES