Load Data Into Table works fine. But
But the next paragraph
%sql
select age, count(1) value
from bank
where age < 30
group by age
order by age

Fails
java.lang.NumberFormatException: For input string: "5s" at
java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
at java.lang.Integer.parseInt(Integer.java:492) at
java.lang.Integer.parseInt(Integer.java:527) at
org.apache.hadoop.conf.Configuration.getInt(Configuration.java:1258)

Even when i change the query to
select age from bank
it throws same exception.


Any suggestions ?


-- 
Deepak

Reply via email to