Packages

class JoinedRow extends InternalRow

A mutable wrapper that makes two rows appear as a single concatenated row. Designed to be instantiated once per thread and reused.

Linear Supertypes
InternalRow, Serializable, Serializable, SpecializedGetters, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JoinedRow
  2. InternalRow
  3. Serializable
  4. Serializable
  5. SpecializedGetters
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new JoinedRow(left: InternalRow, right: InternalRow)
  2. new JoinedRow()

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def anyNull: Boolean

    Returns true if there are any NULL values in this row.

    Returns true if there are any NULL values in this row.

    Definition Classes
    JoinedRowInternalRow
  5. def apply(r1: InternalRow, r2: InternalRow): JoinedRow

    Updates this JoinedRow to used point at two new base rows.

    Updates this JoinedRow to used point at two new base rows. Returns itself.

  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  8. def copy(): InternalRow

    Make a copy of the current InternalRow object.

    Make a copy of the current InternalRow object.

    Definition Classes
    JoinedRowInternalRow
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  11. def get(i: Int, dt: DataType): AnyRef
    Definition Classes
    JoinedRowSpecializedGetters
  12. def getArray(i: Int): ArrayData
    Definition Classes
    JoinedRowSpecializedGetters
  13. def getBinary(i: Int): Array[Byte]
    Definition Classes
    JoinedRowSpecializedGetters
  14. def getBoolean(i: Int): Boolean
    Definition Classes
    JoinedRowSpecializedGetters
  15. def getByte(i: Int): Byte
    Definition Classes
    JoinedRowSpecializedGetters
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. def getDecimal(i: Int, precision: Int, scale: Int): Decimal
    Definition Classes
    JoinedRowSpecializedGetters
  18. def getDouble(i: Int): Double
    Definition Classes
    JoinedRowSpecializedGetters
  19. def getFloat(i: Int): Float
    Definition Classes
    JoinedRowSpecializedGetters
  20. def getInt(i: Int): Int
    Definition Classes
    JoinedRowSpecializedGetters
  21. def getInterval(i: Int): CalendarInterval
    Definition Classes
    JoinedRowSpecializedGetters
  22. def getLeft: InternalRow

    Gets this JoinedRow's left base row.

  23. def getLong(i: Int): Long
    Definition Classes
    JoinedRowSpecializedGetters
  24. def getMap(i: Int): MapData
    Definition Classes
    JoinedRowSpecializedGetters
  25. def getRight: InternalRow

    Gets this JoinedRow's right base row.

  26. def getShort(i: Int): Short
    Definition Classes
    JoinedRowSpecializedGetters
  27. def getString(ordinal: Int): String
    Definition Classes
    InternalRow
  28. def getStruct(i: Int, numFields: Int): InternalRow
    Definition Classes
    JoinedRowSpecializedGetters
  29. def getUTF8String(i: Int): UTF8String
    Definition Classes
    JoinedRowSpecializedGetters
  30. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  31. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  32. def isNullAt(i: Int): Boolean
    Definition Classes
    JoinedRowSpecializedGetters
  33. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  34. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  35. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  36. def numFields: Int
    Definition Classes
    JoinedRowInternalRow
  37. def setBoolean(i: Int, value: Boolean): Unit
    Definition Classes
    InternalRow
  38. def setByte(i: Int, value: Byte): Unit
    Definition Classes
    InternalRow
  39. def setDecimal(i: Int, value: Decimal, precision: Int): Unit

    Update the decimal column at i.

    Update the decimal column at i.

    Note: In order to support update decimal with precision > 18 in UnsafeRow, CAN NOT call setNullAt() for decimal column on UnsafeRow, call setDecimal(i, null, precision).

    Definition Classes
    InternalRow
  40. def setDouble(i: Int, value: Double): Unit
    Definition Classes
    InternalRow
  41. def setFloat(i: Int, value: Float): Unit
    Definition Classes
    InternalRow
  42. def setInt(i: Int, value: Int): Unit
    Definition Classes
    InternalRow
  43. def setInterval(i: Int, value: CalendarInterval): Unit
    Definition Classes
    InternalRow
  44. def setLong(i: Int, value: Long): Unit
    Definition Classes
    InternalRow
  45. def setNullAt(i: Int): Unit
    Definition Classes
    JoinedRowInternalRow
  46. def setShort(i: Int, value: Short): Unit
    Definition Classes
    InternalRow
  47. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  48. def toSeq(fieldTypes: Seq[DataType]): Seq[Any]

    Return a Scala Seq representing the row.

    Return a Scala Seq representing the row. Elements are placed in the same order in the Seq.

    Definition Classes
    JoinedRowInternalRow
  49. def toSeq(schema: StructType): Seq[Any]
    Definition Classes
    InternalRow
  50. def toString(): String
    Definition Classes
    JoinedRow → AnyRef → Any
  51. def update(i: Int, value: Any): Unit

    Updates the value at column i.

    Updates the value at column i. Note that after updating, the given value will be kept in this row, and the caller side should guarantee that this value won't be changed afterwards.

    Definition Classes
    JoinedRowInternalRow
  52. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  53. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  54. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  55. def withLeft(newLeft: InternalRow): JoinedRow

    Updates this JoinedRow by updating its left base row.

    Updates this JoinedRow by updating its left base row. Returns itself.

  56. def withRight(newRight: InternalRow): JoinedRow

    Updates this JoinedRow by updating its right base row.

    Updates this JoinedRow by updating its right base row. Returns itself.

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from InternalRow

Inherited from Serializable

Inherited from Serializable

Inherited from SpecializedGetters

Inherited from AnyRef

Inherited from Any

Ungrouped