Testing to see if the problems I had in v1.4 are different in v1.5
(https://issues.apache.org/jira/browse/DRILL-4317), I ran a simple
SELECT * on a csv file about 650MB in size:
~~~
$ time sqlline -f test.sql > /dev/null
1/3 alter session set `exec.errors.verbose`=true;
1 row selected (1.201 seconds)
2/3 use dfs.test;
1 row selected (0.177 seconds)
3/3 select * from
`/csv/customer/hourly/customer_201510170000.csv`;
java.lang.NegativeArraySizeException
Aborting command set because "force" is false and command failed:
"select * from `/csv/customer/hourly/customer_201510170000.csv`;"
Closing: org.apache.drill.jdbc.impl.DrillConnectionImpl
real 44m50.561s
user 41m36.382s
sys 7m18.650s
~~~
That exception does not appear in the drillbit.log local to sqlline,
would I find relevant log information elsewhere?
Should this be a new Jira issue, DRILL-4317 remains untouched.