Interface WritableBytesVector

All Superinterfaces:
BytesColumnVector, ColumnVector, WritableColumnVector
All Known Implementing Classes:
HeapBytesVector

@Internal public interface WritableBytesVector extends WritableColumnVector, BytesColumnVector
  • Method Details

    • appendBytes

      void appendBytes(int rowId, byte[] value, int offset, int length)
      Append byte[] at rowId with the provided value. Note: Must append values according to the order of rowId, can not random append.
    • fill

      void fill(byte[] value)
      Fill the column vector with the provided value.