package org.apache.hadoop.hive.serde2.lazy;
import java.nio.ByteBuffer;
import org.apache.hadoop.hive.serde2.lazy.objectinspector.primitive.LazyDoubleObjectInspector;
/**
* CassandraLazyDouble parses the object into DoubleWritable value.
*
*/
public class CassandraLazyDouble extends LazyDouble
{
public CassandraLazyDouble(LazyDoubleObjectInspector 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.getDouble(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);
}
}