Re: BUG #6328: Wrong error message for insert-sql

From: "Kevin Grittner" <Kevin(dot)Grittner(at)wicourts(dot)gov>
To: <eikenberg(at)golze(dot)de>,<pgsql-bugs(at)postgresql(dot)org>
Subject: Re: BUG #6328: Wrong error message for insert-sql
Date: 2011-12-06 16:37:45
Message-ID: 4EDDF0790200002500043909@gw.wicourts.gov
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

<eikenberg(at)golze(dot)de> wrote:

> INSERT INTO auftragpos (orderno,position,item) VALUES
> (testorder18,1,00123);
> brings error:
> FEHLER: Spalte *testorder18* existiert nicht (Column
> *testorder18* not exists)
> LINE 1: ...T INTO auftragpos (orderno,position,item) VALUES
> (testorder1...
>
> But *testorder18* is a value, not a column-name!?!?
> If there is a problem it should bring a message that the value for
> column "orderno" has the wrong format.

'testorder18' is a literal value. Without the apostrophe quoting it
is taken as an identifier, such as a column. It is entirely correct
and appropriate for an error to be generated. The wording of the
message could perhaps be adjusted to help the user understand their
mistake more easily, since there are no columns in context from any
table here; but the message is not actually wrong. Certain reserved
words (such as CURRENT_DATE) would be allowed here, as would
expressions of arbitrary complexity -- sub-selects, CASE predicates,
functions, etc.; it would take a bit of work to sort out when
something might be a malformed attempt at a literal versus a
misspelled column name in a subquery.

-Kevin

In response to

Browse pgsql-bugs by date

  From Date Subject
Next Message Tom Lane 2011-12-06 16:54:48 Re: copy cmd err
Previous Message Gregg Jaskiewicz 2011-12-06 15:14:56 Re: [BUGS] BUG #6325: Useless Index updates