PG 9.1 regression / row comparison?

Поиск
Список
Период
Сортировка
От Denis de Bernardy
Тема PG 9.1 regression / row comparison?
Дата
Msg-id 537229.49593.qm@web112417.mail.gq1.yahoo.com
обсуждение исходный текст
Список pgsql-testers
I seem to remember that each of the following three statements worked in PG 9.0. Is the last one failing expected in
9.1?Or is it due to the various contrib modules I've been playing with? (I've installed btree_gin, btree_gist, semver,
temporal,pgcrypt, spi/timetravel, and a couple more I can't remember off the top of my head...) 

test=# select row(1,2) = row(1,2); -- returns t
test=# select row(1,2) is distinct from row(1,2); -- returns f

test=# select row(1,2) <> row(1,2);

ERROR:  could not determine interpretation of row comparison operator <>
LINE 1: select row(1,2) <> row(1,2);
                        ^
HINT:  Row comparison operators must be associated with btree operator families.

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

Предыдущее
От: Greg Smith
Дата:
Сообщение: Re: 9.1Beta1 - Repeatable Crash on Windows
Следующее
От: Gavin Flower
Дата:
Сообщение: Re: PG 9.1 regression / row comparison?