BUG #5970: intersect and collation on types - Mailing list pgsql-bugs

From Rikard Pavelic
Subject BUG #5970: intersect and collation on types
Date
Msg-id 201104101925.p3AJPfgp052349@wwwmaster.postgresql.org
Whole thread Raw
Responses Re: BUG #5970: intersect and collation on types  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-bugs
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;

pgsql-bugs by date:

Previous
From: Michael Meskes
Date:
Subject: Re: BUG #5969: ecpg can't see sqlca
Next
From: Gavin Flower
Date:
Subject: Re: BUG #5968: DOCUMENTATION: SELECT synopsis omits RETURNING keyword