Re: Null pointer exception in Hive interpreter when using aggregate functions

2016-01-24 Thread Prabhu GS
Thanks, The commit https://github.com/vgmartinez/incubator-zeppelin/commit/05fa23f8c5112b4e60d0ff1685565af31e5e8a44 works well. Regards Prabhu On Sat, Jan 23, 2016 at 3:52 AM, Victor Manuel Garcia < victor.gar...@beeva.com> wrote: > Hi Vinay, > > This bug is fixed in https://github.com/apache/

Re: Null pointer exception in Hive interpreter when using aggregate functions

2016-01-22 Thread Victor Manuel Garcia
Hi Vinay, This bug is fixed in https://github.com/apache/incubator-zeppelin/pull/668 2016-01-22 23:17 GMT+01:00 Vinay Shukla : > Prabhu, > > Filed https://issues.apache.org/jira/browse/ZEPPELIN-629 to track this. > > From looking at the code, it appears the the driver (class) may not be > set. >

Re: Null pointer exception in Hive interpreter when using aggregate functions

2016-01-22 Thread Vinay Shukla
Prabhu, Filed https://issues.apache.org/jira/browse/ZEPPELIN-629 to track this. >From looking at the code, it appears the the driver (class) may not be set. Can you post the properties set on the Hive interpreter. Though you also appear to be saying that the Hive interpreter works initially bef

Null pointer exception in Hive interpreter when using aggregate functions

2016-01-22 Thread Prabhu GS
Hi team, I cloned Zeppelin from https://github.com/apache/incubator-zeppelin.git and built from source and installed it locally. I created a table using the Hive interpreter, %hive create table test (id int, name string) Then inserted a few rows successfully into the table. %hive select * fro