Re: allow CSV quote in NULL

Поиск
Список
Период
Сортировка
От Stephen Frost
Тема Re: allow CSV quote in NULL
Дата
Msg-id 20070727050327.GI4887@tamriel.snowman.net
обсуждение исходный текст
Ответ на Re: allow CSV quote in NULL  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: allow CSV quote in NULL
Список pgsql-patches
* Tom Lane (tgl@sss.pgh.pa.us) wrote:
> Stephen Frost <sfrost@snowman.net> writes:
> >   Please find attached a minor patch to remove the constraints that a
> >   user can't include the delimiter or quote characters in a 'NULL AS'
> >   string when importing CSV files.
>
> This can't really be sane can it?

hm?  It's a problem I've run into a number of times and I finally got
fed up with it enough to create a patch for it.  It solves my problem
and I don't believe breaks or adversely affects anything else.  It also
has to be explicitly asked for by the user, and when the user asks for
it, what's done is intuitively what would be expected.

I don't see the logic in forbidding the user from being able to do
this...  My specific case involved an integer field which was quoted in
the CSV file (which isn't generally a problem, it's only an issue if it
ends up being a an empty string).  I could easily see it being used for
text fields as well though, if, for example, they want empty strings,
even when quoted, to import as NULLs.  Of course, the default remains
that it'd be imported as an empty string, having it be a NULL has to be
explicitly requested.

    Thanks,

        Stephen

Вложения

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: allow CSV quote in NULL
Следующее
От: Gregory Stark
Дата:
Сообщение: Re: allow CSV quote in NULL