Description
If we write partitioned columns at where clause on tsql, tajo print a error message as follows:
tajo> select * from table1 where id = 1; ERROR: no such a column name default
For reference, hive table schema is as the following:
CREATE TABLE table1( id int, name string, score float, type string);
It occurred on both managed tables and partitioned tables.