Functionsยง
- add_
sort_ above - This utility function adds a
SortExec
above an operator according to the given ordering requirements while preserving the original partitioning. - add_
sort_ above_ with_ check - This utility function adds a
SortExec
above an operator according to the given ordering requirements while preserving the original partitioning. If requirement is already satisfied noSortExec
is added. - is_
coalesce_ partitions - Checks whether the given operator is a
CoalescePartitionsExec
. - is_
limit - Checks whether the given operator is a limit;
i.e. either a
LocalLimitExec
or aGlobalLimitExec
. - is_
repartition - Checks whether the given operator is a
RepartitionExec
. - is_sort
- Checks whether the given operator is a
SortExec
. - is_
sort_ preserving_ merge - Checks whether the given operator is a
SortPreservingMergeExec
. - is_
union - Checks whether the given operator is a
UnionExec
. - is_
window - Checks whether the given operator is a window;
i.e. either a
WindowAggExec
or aBoundedWindowAggExec
.