operator is not unique: integer || integer

Поиск
Список
Период
Сортировка
От Daniel Schuchardt
Тема operator is not unique: integer || integer
Дата
Msg-id fvndfr$1gun$1@news.hub.org
обсуждение исходный текст
Ответ на operator varchar = integer  (Daniel Schuchardt <daniel_schuchardt@web.de>)
Ответы Re: operator is not unique: integer || integer
Список pgsql-general
yeah, its clear that an upgrade from 8.1 to 8.3 is impossible for us
without a major relase.
there are to many changes so the whole project has to be rechecked.

another example:

in 83:

postgres=# SELECT 1::INTEGER||1::INTEGER;
ERROR:  operator does not exist: integer || integer at character 18
HINT:  No operator matches the given name and argument type(s). You
might need to add explicit type casts.


83 with autocast from peter e:

 ERROR:  operator is not unique: integer || integer


in 81:

postgres=# SELECT 1::INTEGER||1::INTEGER;
 ?column?
----------
 11
(1 row)

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

Предыдущее
От: Daniel Schuchardt
Дата:
Сообщение: Re: operator varchar = integer
Следующее
От: Tom Lane
Дата:
Сообщение: Re: operator varchar = integer