Re: Unworkable column delimiter characters for COPY

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Unworkable column delimiter characters for COPY
Дата
Msg-id 18844.1198780321@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Unworkable column delimiter characters for COPY  (Andrew Dunstan <andrew@dunslane.net>)
Ответы Re: Unworkable column delimiter characters for COPY  (Andrew Dunstan <andrew@dunslane.net>)
Список pgsql-hackers
Andrew Dunstan <andrew@dunslane.net> writes:
> Tom Lane wrote:
>> I think at minimum we need to forbid b, f, n, r, t, v, which are the
>> control character representations currently recognized by COPY.
>> But I'm tempted to make it reject all 26 lower-case ASCII letters,
>> as a form of future-proofing.  Thoughts?

> Assuming this is only for non-CSV mode, it seems OK.

On looking closer, 'x', octal digits, and '.' would also be trouble.
So I made it reject a-z, 0-9, and dot.

It appears that the CSV mode is a few bricks shy of a load here as
well: it will let you do CSV DELIMITER '"' resulting in entirely
broken output.  It seems we ought to forbid delimiter from matching CSV
quote or escape characters.  I'll let you clean up that case though...
        regards, tom lane


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

Предыдущее
От: Andrew Sullivan
Дата:
Сообщение: Re: Spoofing as the postmaster
Следующее
От: Andrew Dunstan
Дата:
Сообщение: Re: Unworkable column delimiter characters for COPY