Returns true if there is a Common Table Expression (CTE) / Subquery for the specified name
(&self, cte_name: &str)
| 388 | /// Returns true if there is a Common Table Expression (CTE) / |
| 389 | /// Subquery for the specified name |
| 390 | pub fn contains_cte(&self, cte_name: &str) -> bool { |
| 391 | self.ctes.contains_key(cte_name) |
| 392 | } |
| 393 | |
| 394 | /// Inserts a LogicalPlan for the Common Table Expression (CTE) / |
| 395 | /// Subquery for the specified name |
no test coverage detected