Re: Make COPY format extendable: Extract COPY TO format implementations
Masahiko Sawada <sawada.mshk@gmail.com>
On Fri, Feb 28, 2025 at 1:58 PM Sutou Kouhei <kou@clear-code.com> wrote: > > Hi, > > In <CAD21AoDr13=dx+k8gmQnR5_bY+NskyN4mbSWN0KhQncL6xuPMA@mail.gmail.com> > "Re: Make COPY format extendable: Extract COPY TO format implementations" on Fri, 28 Feb 2025 11:50:39 -0800, > Masahiko Sawada <sawada.mshk@gmail.com> wrote: > > > I initially thought it would be acceptable to stop > > NextCopyFromRawFields exposed since NextCopyFrom() could serve as an > > alternative. For example, the NextCopyFromRawFields() function was > > originally exposed in commit 8ddc05fb01ee2c primarily to support > > extension modules like file_fdw but file_fdw wasn't utilizing this > > API. I pushed the patch without the above change. Unfortunately, this > > commit subsequently broke file_text_array_fdw[1] and made BF animal > > crake unhappy[2]. > > > > [1] https://github.com/adunstan/file_text_array_fdw > > [2] https://buildfarm.postgresql.org/cgi-bin/show_log.pl?nm=crake&dt=2025-02-28%2018%3A47%3A02 > > Thanks for the try! > > > Upon examining file_text_array_fdw more closely, I realized that > > NextCopyFrom() may not be a suitable replacement for > > NextCopyFromRawFields() in certain scenarios. Specifically, > > NextCopyFrom() assumes that the caller has prior knowledge of the > > source data's column count, making it inadequate for cases where > > extensions like file_text_array_fdw need to construct an array of > > source data with an unknown number of columns. In such situations, > > NextCopyFromRawFields() proves to be more practical. Given these > > considerations, I'm now leaning towards implementing the proposed > > change. Thoughts? > > You suggest that we re-export NextCopyFromRawFields() (as a > wrapper of static inline version) for backward > compatibility, right? It makes sense. We should keep > backward compatibility because there is a use-case of > NextCopyFromRawFields(). Yes, I've submitted the patch to re-export that function[1]. Could you review it? Regards, [1] https://www.postgresql.org/message-id/CAD21AoBA414Q76LthY65NJfWbjOxXn1bdFFsD_NBhT2wPUS1SQ%40mail.gmail.com -- Masahiko Sawada Amazon Web Services: https://aws.amazon.com
Commits
-
Refactor Copy{From|To}GetRoutine() to use pass-by-reference argument.
- bacbc4863b3b 18.0 landed
-
Refactor COPY FROM to use format callback functions.
- 7717f6300693 18.0 landed
-
Refactor COPY TO to use format callback functions.
- 2e4127b6d2d8 18.0 landed
-
Another try to fix BF failure introduced in commit ddd5f4f54a.
- 9bc1eee988c3 17.0 cited
-
Revert "Refactor CopyReadAttributes{CSV,Text}() to use a callback in COPY FROM"
- 06bd311bce24 17.0 landed
-
Improve COPY TO performance when server and client encodings match
- b619852086ed 17.0 cited
-
Simplify signature of CopyAttributeOutCSV() in copyto.c
- b9d6038d7048 17.0 landed
-
Revert "Refactor CopyAttributeOut{CSV,Text}() to use a callback in COPY TO"
- 1aa8324b81fa 17.0 landed
-
Refactor CopyAttributeOut{CSV,Text}() to use a callback in COPY TO
- 2889fd23be56 17.0 landed
-
Refactor CopyReadAttributes{CSV,Text}() to use a callback in COPY FROM
- 95fb5b49024a 17.0 landed
-
Add progress reporting of skipped tuples during COPY FROM.
- 729439607ad2 17.0 cited
-
pgbench: Add \syncpipeline
- 94edfe250c6a 17.0 cited
-
meson: Make gzip and tar optional
- 9ca6e7b9411e 17.0 cited
-
Export the external file reader used in COPY FROM as APIs.
- 8ddc05fb01ee 9.1.0 cited