Record Class AbstractSubqueryJoin.LogicalPlanTuple
java.lang.Object
java.lang.Record
org.elasticsearch.xpack.esql.plan.logical.join.AbstractSubqueryJoin.LogicalPlanTuple
- Enclosing class:
AbstractSubqueryJoin
public static record AbstractSubqueryJoin.LogicalPlanTuple(LogicalPlan subPlan, LogicalPlan originalSubPlan)
extends Record
Tuple holding the subplan to execute and the original plan node for identity matching.
-
Constructor Summary
ConstructorsConstructorDescriptionLogicalPlanTuple(LogicalPlan subPlan, 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.subPlan()Returns the value of thesubPlanrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
LogicalPlanTuple
Creates an instance of aLogicalPlanTuplerecord class.- Parameters:
subPlan- the value for thesubPlanrecord 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). -
subPlan
Returns the value of thesubPlanrecord component.- Returns:
- the value of the
subPlanrecord component
-
originalSubPlan
Returns the value of theoriginalSubPlanrecord component.- Returns:
- the value of the
originalSubPlanrecord component
-