Record Class InlineJoin.LogicalPlanTuple
java.lang.Object
java.lang.Record
org.elasticsearch.xpack.esql.plan.logical.join.InlineJoin.LogicalPlanTuple
- Record Components:
stubReplacedSubPlan- - the completed / "destubbed" right-hand side of the bottommost InlineJoin in the plan. For example: Aggregate[[],[MAX(x{r}#99,true[BOOLEAN]) AS y#102]] \_Limit[1000[INTEGER],false] \_LocalRelation[[x{r}#99],[IntVectorBlock[vector=ConstantIntVector[positions=1, value=1]]]]originalSubPlan- - the original (unchanged) right-hand side of the bottommost InlineJoin in the plan. For example: Aggregate[[],[MAX(x{r}#99,true[BOOLEAN]) AS y#102]] \_StubRelation[[x{r}#99]]]
- Enclosing class:
InlineJoin
public static record InlineJoin.LogicalPlanTuple(LogicalPlan stubReplacedSubPlan, LogicalPlan originalSubPlan)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionLogicalPlanTuple(LogicalPlan stubReplacedSubPlan, LogicalPlan originalSubPlan) Creates an instance of aLogicalPlanTuplerecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theoriginalSubPlanrecord component.Returns the value of thestubReplacedSubPlanrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
LogicalPlanTuple
Creates an instance of aLogicalPlanTuplerecord class.- Parameters:
stubReplacedSubPlan- the value for thestubReplacedSubPlanrecord componentoriginalSubPlan- the value for theoriginalSubPlanrecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
stubReplacedSubPlan
Returns the value of thestubReplacedSubPlanrecord component.- Returns:
- the value of the
stubReplacedSubPlanrecord component
-
originalSubPlan
Returns the value of theoriginalSubPlanrecord component.- Returns:
- the value of the
originalSubPlanrecord component
-