Re: SQL Commands COPY

Поиск
Список
Период
Сортировка
От Laurenz Albe
Тема Re: SQL Commands COPY
Дата
Msg-id a1357b1d4e6868d8cce4c484b06cd68239543403.camel@cybertec.at
обсуждение исходный текст
Ответ на SQL Commands COPY  (PG Doc comments form <noreply@postgresql.org>)
Ответы Re: SQL Commands COPY  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-docs
On Wed, 2021-06-09 at 19:54 +0000, PG Doc comments form wrote:
> Page: https://www.postgresql.org/docs/13/sql-copy.html
> Description:
> 
> The synopsis and parameters for the COPY command show the FORCE_QUOTE option
> with an underscore and requires column names to be enclosed with round
> brackets, but the example in the compatibility section shows the option name
> as FORCE QUOTE (no underscore) and has no requirement to enclose the column
> names with round brackets.
> 
> When using psql (version 13.3) against a version 13 cluster, the method
> shown in the compatibility section works whereas the methods shown in the
> synopsis and parameters sections do not work and will throw a syntax
> error.

You must be misreading something, the new syntax works:

COPY (SELECT 42 AS x) TO STDOUT (FORMAT 'csv', FORCE_QUOTE (x));

Yours,
Laurenz Albe




В списке pgsql-docs по дате отправления:

Предыдущее
От: PG Doc comments form
Дата:
Сообщение: SQL Commands COPY
Следующее
От: Tom Lane
Дата:
Сообщение: Re: SQL Commands COPY