Dongjoon Hyun created TAJO-1377:
-----------------------------------
Summary: no such a column ERROR when INTERSECT is used in FROM
clause
Key: TAJO-1377
URL: https://issues.apache.org/jira/browse/TAJO-1377
Project: Tajo
Issue Type: Bug
Environment: Tajo 0.10.0 (rev. 29f0521 source checksum c56324e
compiled by hyunsik 2015-02-24T03:41Z)
Reporter: Dongjoon Hyun
*In FROM clause, INTERSECT makes 'no such a column' error while UNION is okay.*
{quote}
create table test1(d date);
insert overwrite into test1 select '2015-03-08';
select * from (select distinct d from test1 intersect select distinct d from
test1) a;
{quote}
{color:red}
ERROR: no such a column 'd'
{color}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)