| 2624 | /// schema. |
| 2625 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
| 2626 | pub struct Window { |
| 2627 | /// The incoming logical plan |
| 2628 | pub input: Arc<LogicalPlan>, |
| 2629 | /// The window function expression |
| 2630 | pub window_expr: Vec<Expr>, |
| 2631 | /// The schema description of the window output |
| 2632 | pub schema: DFSchemaRef, |
| 2633 | } |
| 2634 | |
| 2635 | impl Window { |
| 2636 | /// Create a new window operator. |
no outgoing calls
no test coverage detected
searching dependent graphs…