Inserts a LogicalPlan for the Common Table Expression (CTE) / Subquery for the specified name
(&mut self, cte_name: impl Into<String>, plan: LogicalPlan)
| 394 | /// Inserts a LogicalPlan for the Common Table Expression (CTE) / |
| 395 | /// Subquery for the specified name |
| 396 | pub fn insert_cte(&mut self, cte_name: impl Into<String>, plan: LogicalPlan) { |
| 397 | let cte_name = cte_name.into(); |
| 398 | self.ctes.insert(cte_name, Arc::new(plan)); |
| 399 | } |
| 400 | |
| 401 | /// Return a plan for the Common Table Expression (CTE) / Subquery for the |
| 402 | /// specified name |
no test coverage detected