On Fri, Feb 28, 2025 at 12:14 PM Andrew Dunstan wrote:
>
>
> On 2025-02-28 Fr 2:55 PM, Masahiko Sawada wrote:
> > On Fri, Feb 28, 2025 at 11:47 AM Andrew Dunstan wrote:
> >>
> >> On 2025-02-28 Fr 1:31 PM, Masahiko Sawada wrote:
> >>
> >> Refactor COPY FROM to use format callback functions.
> >>
>
On Fri, Feb 28, 2025 at 3:06 PM Andrew Dunstan wrote:
>
>
> On 2025-02-28 Fr 5:39 PM, Masahiko Sawada wrote:
>
> On Fri, Feb 28, 2025 at 2:16 PM Sutou Kouhei wrote:
>
> Hi,
>
> Thanks for following up the patch!
>
> In
> "Re: pgsql: Refactor COPY FROM
On Fri, Feb 28, 2025 at 2:16 PM Sutou Kouhei wrote:
>
> Hi,
>
> Thanks for following up the patch!
>
> In
> "Re: pgsql: Refactor COPY FROM to use format callback functions." on Fri,
> 28 Feb 2025 12:56:19 -0800,
> Masahiko Sawada wrote:
>
> >
On 2025-02-28 Fr 5:39 PM, Masahiko Sawada wrote:
On Fri, Feb 28, 2025 at 2:16 PM Sutou Kouhei wrote:
Hi,
Thanks for following up the patch!
In
"Re: pgsql: Refactor COPY FROM to use format callback functions." on Fri, 28
Feb 2025 12:56:19 -0800,
Masahiko Sawada wrote:
R
Hi,
Thanks for following up the patch!
In
"Re: pgsql: Refactor COPY FROM to use format callback functions." on Fri, 28
Feb 2025 12:56:19 -0800,
Masahiko Sawada wrote:
> Right. I've attached the updated patch.
In general, this approach will work but could you keep
the
On 2025-02-28 Fr 2:55 PM, Masahiko Sawada wrote:
On Fri, Feb 28, 2025 at 11:47 AM Andrew Dunstan wrote:
On 2025-02-28 Fr 1:31 PM, Masahiko Sawada wrote:
Refactor COPY FROM to use format callback functions.
This commit introduces a new CopyFromRoutine struct, which is a set of
callback rout
On 2025-02-28 Fr 1:31 PM, Masahiko Sawada wrote:
Refactor COPY FROM to use format callback functions.
This commit introduces a new CopyFromRoutine struct, which is a set of
callback routines to read tuples in a specific format. It also makes
COPY FROM with the existing formats (text, CSV, and b
On Fri, Feb 28, 2025 at 11:47 AM Andrew Dunstan wrote:
>
>
> On 2025-02-28 Fr 1:31 PM, Masahiko Sawada wrote:
>
> Refactor COPY FROM to use format callback functions.
>
> This commit introduces a new CopyFromRoutine struct, which is a set of
> callback routines to read tuples in a specific format.
Refactor COPY FROM to use format callback functions.
This commit introduces a new CopyFromRoutine struct, which is a set of
callback routines to read tuples in a specific format. It also makes
COPY FROM with the existing formats (text, CSV, and binary) utilize
these format callbacks.
This change