package org.apache.hadoop.hive.serde2.lazy;
import java.nio.ByteBuffer;
import org.apache.hadoop.hive.serde2.lazy.objectinspector.primitive.LazyLongObjectInspector;
/**
* CassandraLazyLong parses the object into LongWritable value.
*
*/
public class CassandraLazyLong extends LazyLong
{
public CassandraLazyLong(LazyLongObjectInspector oi) {
super(oi);
}
@Override
public void init(ByteArrayRef bytes, int start, int length) {
if ( length == 8 ) {
try {
ByteBuffer buf = ByteBuffer.wrap(bytes.getData(), start, length);
data.set(buf.getLong(buf.position()));
isNull = false;
return;
} catch (Throwable ie) {
//we are unable to parse the data, try to parse it in the hive lazy way.
}
}
super.init(bytes, start, length);
}
}