[SPARK-20783][SQL][FOLLOW-UP] Create ColumnVector to abstract existing compressed column

## What changes were proposed in this pull request?

Removed one unused method.

## How was this patch tested?

Existing tests.

Author: Liang-Chi Hsieh <viirya@gmail.com>

Closes #19508 from viirya/SPARK-20783-followup.
This commit is contained in:
Liang-Chi Hsieh 2017-10-25 16:31:58 +01:00 committed by Wenchen Fan
parent 6c6950839d
commit 1051ebec70

View file

@ -63,9 +63,6 @@ private[columnar] abstract class BasicColumnAccessor[JvmType](
}
protected def underlyingBuffer = buffer
def getByteBuffer: ByteBuffer =
buffer.duplicate.order(ByteOrder.nativeOrder())
}
private[columnar] class NullColumnAccessor(buffer: ByteBuffer)