[ 
https://issues.apache.org/jira/browse/TAJO-771?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Fengdong Yu updated TAJO-771:
-----------------------------

    Description: 
I created an external hive table: test
{code}
CREATE EXTERNAL TABLE test(id string) PARTITIONED BY (dt string);
{code}

then add partition;
{code}
alter table test add partition (dt='20140410') location '/data/20140410/';
{code}

 I can \d test in the tsql shell, but there is no query result as expected 
during:

{code}
select id from test where dt='20140410' limit 10;
{code}

  was:
I created an external hive table: test
CREATE EXTERNAL TABLE test(id string) PARTITIONED BY (dt string);

then add partition;
alter table test add partition (dt='20140410') location '/data/20140410/';

 I can \d test in the tsql shell, but there is no query result as expected 
during:

select id from test where dt='20140410' limit 10;


> Can not find Hive external table data
> -------------------------------------
>
>                 Key: TAJO-771
>                 URL: https://issues.apache.org/jira/browse/TAJO-771
>             Project: Tajo
>          Issue Type: Bug
>          Components: catalog
>    Affects Versions: 0.9
>            Reporter: Fengdong Yu
>
> I created an external hive table: test
> {code}
> CREATE EXTERNAL TABLE test(id string) PARTITIONED BY (dt string);
> {code}
> then add partition;
> {code}
> alter table test add partition (dt='20140410') location '/data/20140410/';
> {code}
>  I can \d test in the tsql shell, but there is no query result as expected 
> during:
> {code}
> select id from test where dt='20140410' limit 10;
> {code}



--
This message was sent by Atlassian JIRA
(v6.2#6252)

Reply via email to