| 2908 | // Repartition the plan based on a partitioning scheme. |
| 2909 | #[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Hash)] |
| 2910 | pub struct Repartition { |
| 2911 | /// The incoming logical plan |
| 2912 | pub input: Arc<LogicalPlan>, |
| 2913 | /// The partitioning scheme |
| 2914 | pub partitioning_scheme: Partitioning, |
| 2915 | } |
| 2916 | |
| 2917 | /// Union multiple inputs |
| 2918 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
no outgoing calls
searching dependent graphs…