trait JoinOrBuilder extends MessageOrBuilder
- Alphabetic
- By Inheritance
- JoinOrBuilder
- MessageOrBuilder
- MessageLiteOrBuilder
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def findInitializationErrors(): List[String]
- Definition Classes
- MessageOrBuilder
- abstract def getAllFields(): Map[FieldDescriptor, AnyRef]
- Definition Classes
- MessageOrBuilder
- abstract def getDefaultInstanceForType(): Message
- Definition Classes
- MessageOrBuilder → MessageLiteOrBuilder
- abstract def getDescriptorForType(): Descriptor
- Definition Classes
- MessageOrBuilder
- abstract def getField(field: FieldDescriptor): AnyRef
- Definition Classes
- MessageOrBuilder
- abstract def getInitializationErrorString(): String
- Definition Classes
- MessageOrBuilder
- abstract def getJoinCondition(): Expression
(Optional) The join condition. Could be unset when `using_columns` is utilized. This field does not co-exist with using_columns.
(Optional) The join condition. Could be unset when `using_columns` is utilized. This field does not co-exist with using_columns.
.spark.connect.Expression join_condition = 3;
- returns
The joinCondition.
- abstract def getJoinConditionOrBuilder(): ExpressionOrBuilder
(Optional) The join condition. Could be unset when `using_columns` is utilized. This field does not co-exist with using_columns.
(Optional) The join condition. Could be unset when `using_columns` is utilized. This field does not co-exist with using_columns.
.spark.connect.Expression join_condition = 3;
- abstract def getJoinDataType(): JoinDataType
(Optional) Only used by joinWith. Set the left and right join data types.
(Optional) Only used by joinWith. Set the left and right join data types.
optional .spark.connect.Join.JoinDataType join_data_type = 6;
- returns
The joinDataType.
- abstract def getJoinDataTypeOrBuilder(): JoinDataTypeOrBuilder
(Optional) Only used by joinWith. Set the left and right join data types.
(Optional) Only used by joinWith. Set the left and right join data types.
optional .spark.connect.Join.JoinDataType join_data_type = 6;
- abstract def getJoinType(): JoinType
(Required) The join type.
(Required) The join type.
.spark.connect.Join.JoinType join_type = 4;
- returns
The joinType.
- abstract def getJoinTypeValue(): Int
(Required) The join type.
(Required) The join type.
.spark.connect.Join.JoinType join_type = 4;
- returns
The enum numeric value on the wire for joinType.
- abstract def getLeft(): Relation
(Required) Left input relation for a Join.
(Required) Left input relation for a Join.
.spark.connect.Relation left = 1;
- returns
The left.
- abstract def getLeftOrBuilder(): RelationOrBuilder
(Required) Left input relation for a Join.
(Required) Left input relation for a Join.
.spark.connect.Relation left = 1;
- abstract def getOneofFieldDescriptor(oneof: OneofDescriptor): FieldDescriptor
- Definition Classes
- MessageOrBuilder
- abstract def getRepeatedField(field: FieldDescriptor, index: Int): AnyRef
- Definition Classes
- MessageOrBuilder
- abstract def getRepeatedFieldCount(field: FieldDescriptor): Int
- Definition Classes
- MessageOrBuilder
- abstract def getRight(): Relation
(Required) Right input relation for a Join.
(Required) Right input relation for a Join.
.spark.connect.Relation right = 2;
- returns
The right.
- abstract def getRightOrBuilder(): RelationOrBuilder
(Required) Right input relation for a Join.
(Required) Right input relation for a Join.
.spark.connect.Relation right = 2;
- abstract def getUnknownFields(): UnknownFieldSet
- Definition Classes
- MessageOrBuilder
- abstract def getUsingColumns(index: Int): String
Optional. using_columns provides a list of columns that should present on both sides of the join inputs that this Join will join on. For example A JOIN B USING col_name is equivalent to A JOIN B on A.col_name = B.col_name. This field does not co-exist with join_condition.
Optional. using_columns provides a list of columns that should present on both sides of the join inputs that this Join will join on. For example A JOIN B USING col_name is equivalent to A JOIN B on A.col_name = B.col_name. This field does not co-exist with join_condition.
repeated string using_columns = 5;
- index
The index of the element to return.
- returns
The usingColumns at the given index.
- abstract def getUsingColumnsBytes(index: Int): ByteString
Optional. using_columns provides a list of columns that should present on both sides of the join inputs that this Join will join on. For example A JOIN B USING col_name is equivalent to A JOIN B on A.col_name = B.col_name. This field does not co-exist with join_condition.
Optional. using_columns provides a list of columns that should present on both sides of the join inputs that this Join will join on. For example A JOIN B USING col_name is equivalent to A JOIN B on A.col_name = B.col_name. This field does not co-exist with join_condition.
repeated string using_columns = 5;
- index
The index of the value to return.
- returns
The bytes of the usingColumns at the given index.
- abstract def getUsingColumnsCount(): Int
Optional. using_columns provides a list of columns that should present on both sides of the join inputs that this Join will join on. For example A JOIN B USING col_name is equivalent to A JOIN B on A.col_name = B.col_name. This field does not co-exist with join_condition.
Optional. using_columns provides a list of columns that should present on both sides of the join inputs that this Join will join on. For example A JOIN B USING col_name is equivalent to A JOIN B on A.col_name = B.col_name. This field does not co-exist with join_condition.
repeated string using_columns = 5;
- returns
The count of usingColumns.
- abstract def getUsingColumnsList(): List[String]
Optional. using_columns provides a list of columns that should present on both sides of the join inputs that this Join will join on. For example A JOIN B USING col_name is equivalent to A JOIN B on A.col_name = B.col_name. This field does not co-exist with join_condition.
Optional. using_columns provides a list of columns that should present on both sides of the join inputs that this Join will join on. For example A JOIN B USING col_name is equivalent to A JOIN B on A.col_name = B.col_name. This field does not co-exist with join_condition.
repeated string using_columns = 5;
- returns
A list containing the usingColumns.
- abstract def hasField(field: FieldDescriptor): Boolean
- Definition Classes
- MessageOrBuilder
- abstract def hasJoinCondition(): Boolean
(Optional) The join condition. Could be unset when `using_columns` is utilized. This field does not co-exist with using_columns.
(Optional) The join condition. Could be unset when `using_columns` is utilized. This field does not co-exist with using_columns.
.spark.connect.Expression join_condition = 3;
- returns
Whether the joinCondition field is set.
- abstract def hasJoinDataType(): Boolean
(Optional) Only used by joinWith. Set the left and right join data types.
(Optional) Only used by joinWith. Set the left and right join data types.
optional .spark.connect.Join.JoinDataType join_data_type = 6;
- returns
Whether the joinDataType field is set.
- abstract def hasLeft(): Boolean
(Required) Left input relation for a Join.
(Required) Left input relation for a Join.
.spark.connect.Relation left = 1;
- returns
Whether the left field is set.
- abstract def hasOneof(oneof: OneofDescriptor): Boolean
- Definition Classes
- MessageOrBuilder
- abstract def hasRight(): Boolean
(Required) Right input relation for a Join.
(Required) Right input relation for a Join.
.spark.connect.Relation right = 2;
- returns
Whether the right field is set.
- abstract def isInitialized(): Boolean
- Definition Classes
- MessageLiteOrBuilder
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)