Record Class TableFunctionNode.PassThroughColumn
java.lang.Object
java.lang.Record
io.trino.sql.planner.plan.TableFunctionNode.PassThroughColumn
- Enclosing class:
TableFunctionNode
-
Constructor Summary
ConstructorsConstructorDescriptionPassThroughColumn(Symbol symbol, boolean isPartitioningColumn) Creates an instance of aPassThroughColumnrecord 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.booleanReturns the value of theisPartitioningColumnrecord component.symbol()Returns the value of thesymbolrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
PassThroughColumn
Creates an instance of aPassThroughColumnrecord class.- Parameters:
symbol- the value for thesymbolrecord componentisPartitioningColumn- the value for theisPartitioningColumnrecord component
-
-
Method Details
-
toString
-
hashCode
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes. -
symbol
Returns the value of thesymbolrecord component.- Returns:
- the value of the
symbolrecord component
-
isPartitioningColumn
public boolean isPartitioningColumn()Returns the value of theisPartitioningColumnrecord component.- Returns:
- the value of the
isPartitioningColumnrecord component
-