Re: Updated COPY CSV patch

From: Andrew Dunstan <andrew(at)dunslane(dot)net>
To: pgsql-patches(at)postgresql(dot)org
Subject: Re: Updated COPY CSV patch
Date: 2004-04-13 18:18:04
Message-ID: 407C2EDC.8080808@dunslane.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-patches

Bruce Momjian wrote:

>Andrew Dunstan wrote:
>
>
>>Bruce Momjian wrote:
>>
>>
>>
>>>While doing OIDs seems atypical, it seems like a reasonable thing that
>>>CSV should be able to do. Basically, I see no reason to disable it.
>>>
>>>
>>>
>>>
>>>
>>OK. We have bigger fish to fry ;-)
>>
>>
>
>Uh, sorry, what I meant was that we should have it working in this
>patch. No reason to leave it for later. We have to get this 100% right
>the first time because people will start relying on it.
>
>
>

Yes. What *I* meant was that allowing it was OK with me, and not worth
arguing over.

Incidentally, the patch looks OK at first glance, and seems to work
fine, modulo today's little controversies, with this exception:

if (csv_mode)
{
if (!quote)
quote = "\"";
if (!escape)
escape = "\""; /* should be "escape = quote;" */
}

cheers

andrew

In response to

Responses

Browse pgsql-patches by date

  From Date Subject
Next Message Bruce Momjian 2004-04-13 18:48:43 Re: Updated COPY CSV patch
Previous Message Andrew Dunstan 2004-04-13 18:05:48 Re: Updated COPY CSV patch