Github user blrunner commented on the pull request:
https://github.com/apache/tajo/pull/503#issuecomment-89770589
@charsyam
I found the updated patch and the unit test ran successfully. But I would
like more better if you add one more unit test case to TestInsertQuery as
follows.
```
create table test1 (col1 char(5));
insert into test1 select 'a';
insert into test1 select 'abc';
insert into test1 select 'abcde';
select * from test1;
col1
-------------------------------
a
abc
abcde
```
---
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.
---