Partitioned table transform
transform applies a unary operator to all constituents of a partitioned table.
Syntax
Parameters
| Parameter | Type | Description |
|---|---|---|
| transformer | UnaryOperator<Table> | An operation on a table that returns a table. |
| executionContext | ExecutionContext | The |
| expectRefreshingResults | boolean | Whether to expect refreshing results from the transformation. If |
Returns
A PartitionedTable.
Examples
This first example applies a transformation to add a new column to each constituent of a partitioned table.
This second example applies aggregations to each constituent of a partitioned table via transform. It specifies the execution context in the transform call, so no it is not needed in the closure. Additionally, refreshing results are not expected, so false is passed as the third argument.