Re: Plan for CSV handling of quotes, NULL

From: "Andrew Dunstan" <andrew(at)dunslane(dot)net>
To: <pgsql-patches(at)postgresql(dot)org>
Subject: Re: Plan for CSV handling of quotes, NULL
Date: 2004-04-15 05:00:22
Message-ID: 2630.24.211.141.25.1082005222.squirrel@www.dunslane.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-patches

Bruce Momjian said:
> So, for open CSV items we have:
>
> o add oid dump/reload

There seems to be agreement on this at least. All you need to do is remove
these lines - AFAICS the OID code should be able to be happily non-CSV-
aware.

/*
* Don't allow OIDs in CSV mode
*/

if (csv_mode && oids) // FIX ME bjm
ereport(ERROR,
(errcode(ERRCODE_SYNTAX_ERROR),
errmsg("Cannot specify OIDS in CSV mode ")));

cheers

andrew

In response to

Responses

Browse pgsql-patches by date

  From Date Subject
Next Message Tom Lane 2004-04-15 05:06:22 Re: Plan for CSV handling of quotes, NULL
Previous Message Bruce Momjian 2004-04-15 04:52:35 Re: Plan for CSV handling of quotes, NULL