List of usage examples for org.apache.spark.sql.catalyst.expressions.codegen UnsafeArrayWriter write
@Override
public void write(int ordinal, double value)
From source file:com.splicemachine.db.iapi.types.HBaseRowLocation.java
License:Open Source License
@Override public void writeArray(UnsafeArrayWriter unsafeArrayWriter, int ordinal) throws StandardException { if (isNull()) unsafeArrayWriter.setNull(ordinal); else//from w ww. j av a2 s . c om unsafeArrayWriter.write(ordinal, slice.getByteCopy()); }