Re: BUG #17631: Prepare + Merge fails to identify parameter types

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: BUG #17631: Prepare + Merge fails to identify parameter types
Дата
Msg-id 151679.1665435208@sss.pgh.pa.us
обсуждение исходный текст
Ответ на BUG #17631: Prepare + Merge fails to identify parameter types  (PG Bug reporting form <noreply@postgresql.org>)
Список pgsql-bugs
PG Bug reporting form <noreply@postgresql.org> writes:
> create table foo (id int, bar bit);

> PREPARE foo_merge as
>    merge into foo as target
>    using(values($1, $2))
>    as source (id, bar)
>      on target.id = source.id
>    when matched then
>      update set bar = source.bar
>   when not matched then
>      insert(id, bar)
>      values ($1, $2);

> gives error...
> ERROR:  operator does not exist: integer = text
> LINE 5:      on target.id = source.id
>                           ^
> HINT:  No operator matches the given name and argument types. You might need
> to add explicit type casts.

I don't see any bug here.  There's no reason to assume that the VALUES
clause in USING must yield the same columns that the merge target table
has, so those Params just default to text type.  I realize that there
are some kluges that let "insert into foo values($1,$2)" act differently,
but the key word there is "kluge".  VALUES in contexts other than INSERT
has never had such a behavior.  For example, if you do this:

prepare foo as select * from foo join (values($1,$2)) v(f1,f2) on id = v.f1;

you'll get the very same failure:

ERROR:  operator does not exist: integer = text
LINE 1: ...elect * from foo join (values($1,$2)) v(f1,f2) on id = v.f1;
                                                                ^
HINT:  No operator matches the given name and argument types. You might need to add explicit type casts.

            regards, tom lane



В списке pgsql-bugs по дате отправления:

Предыдущее
От: PG Bug reporting form
Дата:
Сообщение: BUG #17631: Prepare + Merge fails to identify parameter types
Следующее
От: PG Bug reporting form
Дата:
Сообщение: BUG #17632: a potential bug of memory leak