-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/17453/
-----------------------------------------------------------
(Updated Jan. 28, 2014, 11:41 a.m.)
Review request for Tajo.
Bugs: TAJO-558
https://issues.apache.org/jira/browse/TAJO-558
Repository: tajo
Description
-------
If we write partitioned columns at where clause on tsql, tajo print a error
message as follows:
{code:xml}
tajo> select * from table1 where id = 1;
ERROR: no such a column name default
{code}
For reference, hive table schema is as the following:
{code:xml}
CREATE TABLE table1(
id int,
name string,
score float,
type string);
{code}
It occurred on both managed tables and partitioned tables.
Diffs (updated)
-----
tajo-algebra/src/main/java/org/apache/tajo/algebra/ColumnReferenceExpr.java
9734593
tajo-catalog/tajo-catalog-common/src/main/java/org/apache/tajo/catalog/Schema.java
c971b63
tajo-catalog/tajo-catalog-drivers/tajo-hcatalog/src/main/java/org/apache/tajo/catalog/store/HCatalogStore.java
ab20f42
Diff: https://reviews.apache.org/r/17453/diff/
Testing
-------
Thanks,
Jung JaeHwa