Returns true if string `id` matches TableReference `ref`
(table_id, ref)
| 544 | |
| 545 | |
| 546 | def identifies(table_id, ref): |
| 547 | """Returns true if string `id` matches TableReference `ref`""" |
| 548 | |
| 549 | return table_id == ref.alias or table_id == ref.name or (ref.schema and (table_id == ref.schema + "." + ref.name)) |
| 550 | |
| 551 | |
| 552 | def _allow_join_condition(statement): |
no outgoing calls
no test coverage detected