| 368 | /// A left deep binary cross product |
| 369 | #[derive(Debug, Clone, PartialEq, Eq)] |
| 370 | pub struct LeftDeepJoin { |
| 371 | /// The lhs is recursive |
| 372 | pub lhs: Box<RelExpr>, |
| 373 | /// The rhs is a relvar |
| 374 | pub rhs: Relvar, |
| 375 | } |
| 376 | |
| 377 | /// A typed scalar expression |
| 378 | #[derive(Debug, Clone, PartialEq, Eq)] |
no outgoing calls
no test coverage detected
searching dependent graphs…