pgsql: file_fdw: Add on_error and log_verbosity options to file_fdw.

From: Fujii Masao <fujii(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: file_fdw: Add on_error and log_verbosity options to file_fdw.
Date: 2024-10-03 06:58:59
Message-ID: E1swFnf-001xtq-2b@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

file_fdw: Add on_error and log_verbosity options to file_fdw.

In v17, the on_error and log_verbosity options were introduced for
the COPY command. This commit extends support for these options
to file_fdw.

Setting on_error = 'ignore' for a file_fdw foreign table allows users
to query it without errors, even when the input file contains
malformed rows, by skipping the problematic rows.

Both on_error and log_verbosity options apply to SELECT and ANALYZE
operations on file_fdw foreign tables.

Author: Atsushi Torikoshi
Reviewed-by: Masahiko Sawada, Fujii Masao
Discussion: https://postgr.es/m/ab59dad10490ea3734cf022b16c24cfd@oss.nttdata.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/a1c4c8a9e1e3a53996dafa1f4ee6d4f7de2c58b2

Modified Files
--------------
contrib/file_fdw/expected/file_fdw.out | 19 ++++++
contrib/file_fdw/file_fdw.c | 107 ++++++++++++++++++++++++++++-----
contrib/file_fdw/sql/file_fdw.sql | 7 +++
doc/src/sgml/file-fdw.sgml | 23 +++++++
4 files changed, 140 insertions(+), 16 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Fujii Masao 2024-10-03 07:01:12 pgsql: Refactor CopyFrom() in copyfrom.c.
Previous Message Fujii Masao 2024-10-03 06:57:16 pgsql: Add log_verbosity = 'silent' support to COPY command.