proxy
The proxy method creates a PartitionedTable.Proxy that allows table operations to be applied to the constituent tables of the source PartitionedTable.
Each operation thus applied will produce a new PartitionedTable with the results, as in transform(UnaryOperator, Dependency...) or partitionedTransform(PartitionedTable, BinaryOperator, Dependency...), and return a new proxy to that PartitionedTable.
Note
If the proxy overload with no parameters is used, the result is the same as proxy(true, true).
Syntax
Parameters
| Parameter | Type | Description |
|---|---|---|
| requireMatchingKeys | boolean | Whether to ensure that both partitioned tables have all the same keys present when a proxied operation uses |
| sanityCheckJoinOperations | boolean | Whether to check that proxied join operations will only find a given join key in one constituent table for |
Returns
A PartitionedTable.Proxy that allows table operations to be applied to the constituent tables of the source PartitionedTable.