()
| 2218 | } |
| 2219 | |
| 2220 | fn plan_join_identity() -> (HirRelationExpr, Scope) { |
| 2221 | let typ = SqlRelationType::new(vec![]); |
| 2222 | let expr = HirRelationExpr::constant(vec![vec![]], typ); |
| 2223 | let scope = Scope::empty(); |
| 2224 | (expr, scope) |
| 2225 | } |
| 2226 | |
| 2227 | /// Describes how to execute a SELECT query. |
| 2228 | /// |
no outgoing calls
no test coverage detected