Package io.trino.sql.planner
Record Class AdaptivePlanner.ExchangeSourceId
java.lang.Object
java.lang.Record
io.trino.sql.planner.AdaptivePlanner.ExchangeSourceId
- Enclosing class:
AdaptivePlanner
public static record AdaptivePlanner.ExchangeSourceId(PlanNodeId exchangeId, PlanNodeId sourceId)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionExchangeSourceId(PlanNodeId exchangeId, PlanNodeId sourceId) Creates an instance of aExchangeSourceIdrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.Returns the value of theexchangeIdrecord component.final inthashCode()Returns a hash code value for this object.sourceId()Returns the value of thesourceIdrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ExchangeSourceId
Creates an instance of aExchangeSourceIdrecord class.- Parameters:
exchangeId- the value for theexchangeIdrecord componentsourceId- the value for thesourceIdrecord 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). -
exchangeId
Returns the value of theexchangeIdrecord component.- Returns:
- the value of the
exchangeIdrecord component
-
sourceId
Returns the value of thesourceIdrecord component.- Returns:
- the value of the
sourceIdrecord component
-