Re: Help with TimeSeries serde

2012-05-30 Thread Russell Jurney
Thanks, I've got it working. I am making a chart UDF, to convert BigInts from count(6) to ** I am trying to find a way to select TimeSeries(count(*)) and group by day, but this results in an error: select to_date(dt) as total, TimeSeries(CAST(count(*) AS INT)) as stars, count(*

Re: Help with TimeSeries serde

2012-05-30 Thread Aniket Mokashi
If this is UDF, you will need hive-exec.jar to compile it. I am not sure what is the use of this udf. Serde has following interface-- public interface SerDe extends Deserializer, Serializer ~Aniket On Wed, May 30, 2012 at 9:51 PM, Russell Jurney wrote: > I tried to make a simple Serde that con