Class

org.apache.spark.sql.execution.columnar.encoding

BigDictionaryDecoderNullable

Related Doc: package encoding

Permalink

final class BigDictionaryDecoderNullable extends BigDictionaryDecoderBase with NullableDecoder

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BigDictionaryDecoderNullable
  2. NullableDecoder
  3. BigDictionaryDecoderBase
  4. DictionaryDecoderBase
  5. DictionaryEncoding
  6. ColumnDecoder
  7. ColumnEncoding
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new BigDictionaryDecoderNullable(columnBytes: AnyRef, startCursor: Long, field: StructField, initDelta: (AnyRef, Long) ⇒ Long = ColumnEncoding.identityLong)

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. final val baseCursor: Long

    Permalink
    Attributes
    protected[org.apache.spark.sql]
    Definition Classes
    ColumnDecoder
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final var currentCursor: Long

    Permalink

    Used by some decoders to track the current sequential cursor.

    Used by some decoders to track the current sequential cursor.

    Attributes
    protected
    Definition Classes
    ColumnDecoder
  8. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def findNextNullPosition(columnBytes: AnyRef, nextNullPosition: Int, num: Int): Int

    Permalink

    Fetch next null position and return it as returned by getNextNullPosition.

    Fetch next null position and return it as returned by getNextNullPosition.

    Definition Classes
    NullableDecoderColumnDecoder
  12. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  13. final def getNextNullPosition: Int

    Permalink

    Return the next position of a null value.

    Return the next position of a null value.

    Definition Classes
    NullableDecoderColumnDecoder
  14. final def getStringDictionary: StringDictionary

    Permalink
    Definition Classes
    DictionaryDecoderBaseColumnDecoder
  15. final def hasNulls: Boolean

    Permalink
    Attributes
    protected[org.apache.spark.sql]
    Definition Classes
    NullableDecoderColumnDecoder
  16. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  17. def initializeCursor(columnBytes: AnyRef, cursor: Long, dataType: DataType): Long

    Permalink

    Initialization will fill in the dictionaries as written by the DictionaryEncoder.

    Initialization will fill in the dictionaries as written by the DictionaryEncoder. For string maps it reads in the value array written using DictionaryMap by the encoder expecting the size of UTF8 encoded string followed by the string contents. Long and integer dictionaries are still using the old ObjectHashSet which needs to be moved to DictionaryMap once DictionaryEncoder adds support for long/integer dictionary encoding.

    Attributes
    protected[org.apache.spark.sql]
    Definition Classes
    DictionaryDecoderBaseColumnDecoder
  18. def initializeNulls(columnBytes: AnyRef, startCursor: Long, field: StructField): Long

    Permalink
    Attributes
    protected[org.apache.spark.sql]
    Definition Classes
    NullableDecoderColumnDecoder
  19. final var intDictionary: Array[Int]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    DictionaryDecoderBase
  20. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  21. final def isNullAt(columnBytes: AnyRef, position: Int): Boolean

    Permalink

    Absolute position null check for random access.

    Absolute position null check for random access.

    Definition Classes
    NullableDecoderColumnDecoder
  22. final var longDictionary: Array[Long]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    DictionaryDecoderBase
  23. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  24. final var nonNullPosition: Int

    Permalink

    Not used by decoders themselves but by delta writer that stores the current nonNullPosition for the decoder.

    Not used by decoders themselves but by delta writer that stores the current nonNullPosition for the decoder. Initialized to -1 so that first increment starts at 0.

    Attributes
    protected[org.apache.spark.sql]
    Definition Classes
    ColumnDecoder
  25. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  27. final def numNulls(columnBytes: AnyRef, ordinal: Int, num: Int): Int

    Permalink

    Return the number of nulls till given ordinal given previous result.

    Return the number of nulls till given ordinal given previous result.

    Definition Classes
    NullableDecoderColumnDecoder
  28. def readArray(columnBytes: AnyRef, nonNullPosition: Int): ArrayData

    Permalink
    Definition Classes
    ColumnDecoder
  29. def readBinary(columnBytes: AnyRef, nonNullPosition: Int): Array[Byte]

    Permalink
    Definition Classes
    ColumnDecoder
  30. def readBoolean(columnBytes: AnyRef, nonNullPosition: Int): Boolean

    Permalink
    Definition Classes
    ColumnDecoder
  31. def readByte(columnBytes: AnyRef, nonNullPosition: Int): Byte

    Permalink
    Definition Classes
    ColumnDecoder
  32. def readDate(columnBytes: AnyRef, nonNullPosition: Int): Int

    Permalink
    Definition Classes
    ColumnDecoder
  33. def readDecimal(columnBytes: AnyRef, precision: Int, scale: Int, nonNullPosition: Int): Decimal

    Permalink
    Definition Classes
    ColumnDecoder
  34. def readDictionaryIndex(columnBytes: AnyRef, nonNullPosition: Int): Int

    Permalink
  35. def readDouble(columnBytes: AnyRef, nonNullPosition: Int): Double

    Permalink
    Definition Classes
    ColumnDecoder
  36. def readFloat(columnBytes: AnyRef, nonNullPosition: Int): Float

    Permalink
    Definition Classes
    ColumnDecoder
  37. final def readInt(columnBytes: AnyRef, nonNullPosition: Int): Int

    Permalink
  38. def readInterval(columnBytes: AnyRef, nonNullPosition: Int): CalendarInterval

    Permalink
    Definition Classes
    ColumnDecoder
  39. final def readLong(columnBytes: AnyRef, nonNullPosition: Int): Long

    Permalink
  40. def readLongDecimal(columnBytes: AnyRef, precision: Int, scale: Int, nonNullPosition: Int): Decimal

    Permalink
    Definition Classes
    ColumnDecoder
  41. def readMap(columnBytes: AnyRef, nonNullPosition: Int): MapData

    Permalink
    Definition Classes
    ColumnDecoder
  42. def readShort(columnBytes: AnyRef, nonNullPosition: Int): Short

    Permalink
    Definition Classes
    ColumnDecoder
  43. def readStruct(columnBytes: AnyRef, numFields: Int, nonNullPosition: Int): InternalRow

    Permalink
    Definition Classes
    ColumnDecoder
  44. def readTimestamp(columnBytes: AnyRef, nonNullPosition: Int): Long

    Permalink
    Definition Classes
    ColumnDecoder
  45. final def readUTF8String(columnBytes: AnyRef, nonNullPosition: Int): UTF8String

    Permalink
  46. final var stringDictionary: StringDictionary

    Permalink
    Attributes
    protected[this]
    Definition Classes
    DictionaryDecoderBase
  47. final def supports(dataType: DataType): Boolean

    Permalink
    Definition Classes
    DictionaryEncodingColumnEncoding
  48. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  49. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  50. def typeId: Int

    Permalink
  51. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  52. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  53. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from NullableDecoder

Inherited from BigDictionaryDecoderBase

Inherited from DictionaryDecoderBase

Inherited from DictionaryEncoding

Inherited from ColumnDecoder

Inherited from ColumnEncoding

Inherited from AnyRef

Inherited from Any

Ungrouped