You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@tajo.apache.org by "Jaehwa Jung (JIRA)" <ji...@apache.org> on 2014/01/28 02:40:37 UTC

[jira] [Created] (TAJO-558) HCatalogStore can't get partitioned column.

Jaehwa Jung created TAJO-558:
--------------------------------

             Summary: HCatalogStore can't get partitioned column.
                 Key: TAJO-558
                 URL: https://issues.apache.org/jira/browse/TAJO-558
             Project: Tajo
          Issue Type: Bug
          Components: catalog
    Affects Versions: 0.8-incubating
            Reporter: Jaehwa Jung
            Assignee: Jaehwa Jung
             Fix For: 0.8-incubating


If we write partitioned columns at where clause on tsql, tajo print a error message as follows:
{code:xml}
tajo> select * from partitioned_table1 where part = 1;;
ERROR: no such a column name default
{code}

For reference, hive table schema is as the following:
{code:xml}
CREATE  TABLE partitioned_table1(
  id int, 
  name string, 
  score float, 
  type string)
PARTITIONED BY ( 
  part int)
ROW FORMAT DELIMITED 
  FIELDS TERMINATED BY '|' 
{code}



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)