Github user jihoonson commented on the pull request:
https://github.com/apache/tajo/pull/422#issuecomment-100076808
Thanks. I've verified that join and aggregation queries work well. Really
nice patch.
The one thing I'd like to comment is that it needs to improve the error
message.
Here is an example case.
```
default> select title, name.first_name, name.last_name from test t1, test
t2 where t1.name.last_name = t2.name.last_name;
ERROR: column "title" does not exist
default> select name.first_name, name.last_name from test t1, test t2 where
t1.name.last_name = t2.name.last_name;
ERROR: column name name.first_name is ambiguous
```
It would be great if the ambiguous exception occurs for the first case.
---
Comments from the [review on
Reviewable.io](https://reviewable.io:443/reviews/apache/tajo/422)
<!-- Sent from Reviewable.io -->
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---