(ref: ColumnReference)
| 16 | } from "./types" |
| 17 | |
| 18 | const isAllOfColumnReference = (ref: ColumnReference): ref is AllOfColumnReference => |
| 19 | (ref as AllOfColumnReference).columnName === "*" || false |
| 20 | const isUnresolvableColumnReference = (ref: ColumnReference) => |
| 21 | (ref as UnqualifiedColumnReference).any || false |
| 22 |
no outgoing calls
no test coverage detected