(
identifier: Any,
schema: str | None,
table: str,
alias: str,
)
| 835 | |
| 836 | |
| 837 | def identifies( |
| 838 | identifier: Any, |
| 839 | schema: str | None, |
| 840 | table: str, |
| 841 | alias: str, |
| 842 | ) -> bool: |
| 843 | if identifier == alias: |
| 844 | return True |
| 845 | if identifier == table: |
| 846 | return True |
| 847 | if schema and identifier == (schema + "." + table): |
| 848 | return True |
| 849 | return False |
no outgoing calls