Re: [PATCHES] BUG #2221: Bad delimiters allowed in COPY ... - Mailing list pgsql-bugs

From Andrew Dunstan
Subject Re: [PATCHES] BUG #2221: Bad delimiters allowed in COPY ...
Date
Msg-id 43DE12DE.6010107@dunslane.net
Whole thread Raw
In response to Re: [PATCHES] BUG #2221: Bad delimiters allowed in COPY ...  (David Fetter <david@fetter.org>)
Responses Re: [PATCHES] BUG #2221: Bad delimiters allowed in COPY ...
List pgsql-bugs

David Fetter wrote:

>
>+     /* Disallow BADCHARS characters */
>+     if (strcspn(cstate->delim, BADCHARS) != 1)
>+         ereport(ERROR,
>+                 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
>+                  errmsg("COPY delimiter cannot be \"%#02x\"",
>+                         *cstate->delim)));
>+
>
>
>

Is  ERRCODE_FEATURE_NOT_SUPPORTED the right errcode? This isn't a
missing feature; we are performing a sanity check here. We can
reasonably expect never to support CR, LF or \ as the text delimiter.
Maybe ERRCODE_INVALID_PARAMETER_VALUE ? Or maybe we need a new one.

Also, I would probably make the format %#.02x so the result would look
like 0x0d (for a CR).

(I bet David never thought there would so much fuss over a handful of
lines of code)

cheers

andrew

pgsql-bugs by date:

Previous
From: "Hervé Hénoch"
Date:
Subject: BUG #2224: unlogical syntax error
Next
From: Tom Lane
Date:
Subject: Re: BUG #2224: unlogical syntax error