Interface Transform
- All Superinterfaces:
- Expression
- All Known Subinterfaces:
- RewritableTransform
- All Known Implementing Classes:
- ClusterByTransform
Represents a transform function in the public logical expression API.
 
For example, the transform date(ts) is used to derive a date value from a timestamp column. The transform name is "date" and its argument is a reference to the "ts" column.
- Since:
- 3.0.0
- 
Field SummaryFields inherited from interface org.apache.spark.sql.connector.expressions.ExpressionEMPTY_EXPRESSION, EMPTY_NAMED_REFERENCE
- 
Method SummaryModifier and TypeMethodDescriptionReturns the arguments passed to the transform function.default Expression[]children()Returns an array of the children of this node.name()Returns the transform function name.Methods inherited from interface org.apache.spark.sql.connector.expressions.Expressiondescribe, references
- 
Method Details- 
nameString name()Returns the transform function name.
- 
argumentsExpression[] arguments()Returns the arguments passed to the transform function.
- 
childrenDescription copied from interface:ExpressionReturns an array of the children of this node. Children should not change.- Specified by:
- childrenin interface- Expression
 
 
-