(node: sql_expr.Column, context: ContextType)
| 156 | |
| 157 | @register(nodetype=sql_expr.Column) |
| 158 | def _column(node: sql_expr.Column, context: ContextType) -> expr.ColumnReference: |
| 159 | tab = node.table |
| 160 | colname = _identifier(node.this, context) |
| 161 | if tab == "": |
| 162 | return thisclass.this[colname] |
| 163 | else: |
| 164 | return context[tab][colname] |
| 165 | |
| 166 | |
| 167 | @register(nodetype=sql_expr.With) |
nothing calls this directly
no test coverage detected