Re: BUG #6236: Query execution bug - Mailing list pgsql-bugs

From Tom Lane
Subject Re: BUG #6236: Query execution bug
Date
Msg-id 7767.1317396815@sss.pgh.pa.us
Whole thread Raw
In response to BUG #6236: Query execution bug  ("Boris Matkov" <borism@devart.com>)
List pgsql-bugs
"Boris Matkov" <borism@devart.com> writes:
> INSERT INTO btest0 (id, name) VALUES ((SELECT DISTINCT id FROM btest0 WHERE
> name = $1 LIMIT 1), $1) - was executed successfully

> INSERT INTO btest0 (name,id) VALUES ($1, (SELECT DISTINCT id FROM btest0
> WHERE name = $1 LIMIT 1)) - I got error:
> ---------------------------
> inconsistent types deduced for parameter $1
> ---------------------------

> Script for the btest0 table creating:

> CREATE TABLE btest0
> (
>   id integer NOT NULL,
>   name character varying(50) NOT NULL,
>   value double precision,
>   CONSTRAINT pk_btest0 PRIMARY KEY (id)
> )

It may be annoying, but it's not a bug.  The equality test uses the
"text = text" operator, so if that's seen first then the parameter gets
resolved as text.  You'd be better off to declare the type of the
parameter instead of assuming that it will always be resolved the way
you want ... but if you can't be bothered to do that, using text instead
of varchar as the column type would avoid most of the cases where you'll
see something like this.

            regards, tom lane

pgsql-bugs by date:

Previous
From: "Boris Matkov"
Date:
Subject: BUG #6236: Query execution bug
Next
From: Tom Lane
Date:
Subject: Re: BUG #6235: Delete fails with ON DELETE rule on inherited table