| 94 | * the SQL (alias or table name), or `null` for an unqualified reference. |
| 95 | */ |
| 96 | export interface PIIColumnReference { |
| 97 | table: string | null; |
| 98 | column: string; |
| 99 | } |
| 100 | |
| 101 | /** |
| 102 | * Walk the AST of `sql` and return every `column_ref` whose column name passes |
nothing calls this directly
no outgoing calls
no test coverage detected