Re: POC PATCH: copy from ... exceptions to: (was Re: VLDB Features)
Alexander Korotkov <aekorotkov@gmail.com>
From: Alexander Korotkov <aekorotkov@gmail.com>
To: jian he <jian.universality@gmail.com>
Cc: torikoshia <torikoshia@oss.nttdata.com>, sawada.mshk@gmail.com, vignesh C <vignesh21@gmail.com>, Alena Rybakina <lena.ribackina@yandex.ru>, Damir Belyalov <dam.bel07@gmail.com>, zhihuifan1213@163.com,
Tom Lane <tgl@sss.pgh.pa.us>, Daniel Gustafsson <daniel@yesql.se>,
PostgreSQL Hackers <pgsql-hackers@postgresql.org>, Andres Freund <andres@anarazel.de>, anisimow.d@gmail.com, HukuToc@gmail.com, pgsql-hackers@lists.postgresql.org, Andrei Lepikhov <a.lepikhov@postgrespro.ru>
Date: 2024-01-14T01:30:32Z
Lists: pgsql-hackers
Commits
Same data as JSON:
GET /api/v1/messages/:b64id/commits
the thread's linked commits as JSON, with link sources.
API reference →
-
doc: Fix COPY ON_ERROR option syntax synopsis.
- f6f8ac8e75c9 17.0 landed
-
Disallow specifying ON_ERROR option without value.
- a6d0fa5ef840 17.0 landed
-
Rename COPY option from SAVE_ERROR_TO to ON_ERROR
- b725b7eec431 17.0 landed
-
Fix spelling in notice
- 58fbbc9d683c 17.0 landed
-
Add new COPY option SAVE_ERROR_TO
- 9e2d8701194f 17.0 landed
Attachments
- 0001-Add-new-COPY-option-SAVE_ERROR_TO-v3.patch (application/octet-stream) patch v3-0001
Hi! I think this is a demanding and long-waited feature. The thread is pretty long, but mostly it was disputes about how to save the errors. The present patch includes basic infrastructure and ability to ignore errors, thus it's pretty simple. On Sat, Jan 13, 2024 at 4:20 PM jian he <jian.universality@gmail.com> wrote: > On Fri, Jan 12, 2024 at 10:59 AM torikoshia <torikoshia@oss.nttdata.com> wrote: > > > > > > Thanks for reviewing! > > > > Updated the patch merging your suggestions except below points: > > > > > + cstate->num_errors = 0; > > > > Since cstate is already initialized in below lines, this may be > > redundant. > > > > | /* Allocate workspace and zero all fields */ > > | cstate = (CopyFromStateData *) palloc0(sizeof(CopyFromStateData)); > > > > > > > + Assert(!cstate->escontext->details_wanted); > > > > I'm not sure this is necessary, considering we're going to add other > > options like 'table' and 'log', which need details_wanted soon. > > > > > > -- > > Regards, > > make save_error_to option cannot be used with COPY TO. > add redundant test, save_error_to with COPY TO test. I've incorporated these changes. Also, I've changed CopyFormatOptions.save_error_to to enum and made some edits in comments and the commit message. I'm going to push this if there are no objections. ------ Regards, Alexander Korotkov