Re: Plan for CSV handling of quotes, NULL

Поиск
Список
Период
Сортировка
От Bruce Momjian
Тема Re: Plan for CSV handling of quotes, NULL
Дата
Msg-id 200404150452.i3F4qZo18976@candle.pha.pa.us
обсуждение исходный текст
Ответ на Re: Plan for CSV handling of quotes, NULL  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: Plan for CSV handling of quotes, NULL  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: Plan for CSV handling of quotes, NULL  ("Andrew Dunstan" <andrew@dunslane.net>)
Список pgsql-patches
Tom Lane wrote:
> Bruce Momjian <pgman@candle.pha.pa.us> writes:
> > I found parse_coerce.c::TypeCategory(), which contains information about
> > which data type oids are in which grouping, e.g. DATETIME, STRING,
> > NUMERIC, etc.  It seems that function, if called with
> > pg_type.typbasetype could help determine if quotes should be used.
>
> TypeCategory is a crock that should have been done away with long ago.
> We need to be working to eliminate it, not expand our dependency on it.

Ah, so do we have any other way to identify the type of field we are
using?  Particularly, how do we identify a numeric and dates?

If we don't find something, we have to push those decisions to the user,
which is kind of strange because deep down we must know this.

The only other thing we could do would be to add something to pg_type
that says whether it needs quotes.  Seems like overkill.

--
  Bruce Momjian                        |  http://candle.pha.pa.us
  pgman@candle.pha.pa.us               |  (610) 359-1001
  +  If your life is a hard drive,     |  13 Roberts Road
  +  Christ can be your backup.        |  Newtown Square, Pennsylvania 19073

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Plan for CSV handling of quotes, NULL
Следующее
От: "Andrew Dunstan"
Дата:
Сообщение: Re: Plan for CSV handling of quotes, NULL