Unwrap the outer projection, returning the inner expression
(self)
| 55 | impl ProjectName { |
| 56 | /// Unwrap the outer projection, returning the inner expression |
| 57 | pub fn unwrap(self) -> RelExpr { |
| 58 | match self { |
| 59 | Self::None(expr) | Self::Some(expr, _) => expr, |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | /// What is the name of the return table? |
| 64 | /// This is either the table name itself or its alias. |
no outgoing calls