SelectExpr represents a SELECT expression.
| 142 | |
| 143 | // SelectExpr represents a SELECT expression. |
| 144 | type SelectExpr struct { |
| 145 | Expr Expr |
| 146 | As UnrestrictedName |
| 147 | } |
| 148 | |
| 149 | // NormalizeTopLevelVarName preemptively expands any UnresolvedName at |
| 150 | // the top level of the expression into a VarName. This is meant |
nothing calls this directly
no outgoing calls
no test coverage detected