Returns true if string `string_id` matches TableReference `ref`
(string_id, ref)
| 526 | |
| 527 | |
| 528 | def identifies(string_id, ref): |
| 529 | """Returns true if string `string_id` matches TableReference `ref`""" |
| 530 | |
| 531 | return string_id == ref.alias or string_id == ref.name or ( |
| 532 | ref.schema and (string_id == ref.schema + '.' + ref.name)) |
| 533 | |
| 534 | |
| 535 | def _allow_join_condition(statement): |
no outgoing calls
no test coverage detected