(self)
| 530 | assert find_sql_refs(sql) == {SQLRef(table="prompts")} |
| 531 | |
| 532 | def test_with_schema(self) -> None: |
| 533 | sql = "SELECT * FROM schema1.table1;" |
| 534 | assert find_sql_refs(sql) == {SQLRef(table="table1", schema="schema1")} |
| 535 | |
| 536 | def test_with_catalog(self) -> None: |
| 537 | sql = "SELECT * FROM catalog1.schema1.table1;" |
nothing calls this directly
no test coverage detected