Обсуждение: BUG #5970: intersect and collation on types

Поиск
Список
Период
Сортировка

BUG #5970: intersect and collation on types

От
"Rikard Pavelic"
Дата:
The following bug has been logged online:

Bug reference:      5970
Logged by:          Rikard Pavelic
Email address:      rikard.pavelic@zg.htnet.hr
PostgreSQL version: 9.1.alpha5
Operating system:   Windows XP SP3
Description:        intersect and collation on types
Details:

create table test_collation (id int, name varchar);
insert into test_collation values (1, 'abc'), (2,'bcd');

--works
select * from test_collation tc
intersect
select * from test_collation tc;

--doesn't work
select tc from test_collation tc
intersect
select tc from test_collation tc;

Re: BUG #5970: intersect and collation on types

От
Tom Lane
Дата:
"Rikard Pavelic" <rikard.pavelic@zg.htnet.hr> writes:
> The following bug has been logged online:

> Bug reference:      5970
> Logged by:          Rikard Pavelic
> Email address:      rikard.pavelic@zg.htnet.hr
> PostgreSQL version: 9.1.alpha5
> Operating system:   Windows XP SP3
> Description:        intersect and collation on types
> Details:

> create table test_collation (id int, name varchar);
> insert into test_collation values (1, 'abc'), (2,'bcd');

> --works
> select * from test_collation tc
> intersect
> select * from test_collation tc;

> --doesn't work
> select tc from test_collation tc
> intersect
> select tc from test_collation tc;

Fixed in HEAD.  Thanks for the report!

            regards, tom lane