Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Invalid
-
None
-
None
-
None
Description
SortExec has the following error check at execution time and this could be moved into the try_new constructor so the error check happens at planning time instead.
if 1 != self.input.output_partitioning().partition_count() { return Err(DataFusionError::Internal( "SortExec requires a single input partition".to_owned(), )); }