(self)
| 523 | } |
| 524 | |
| 525 | def test_with_function(self) -> None: |
| 526 | sql = """ |
| 527 | SELECT *, embedding(text) as text_embedding |
| 528 | FROM prompts; |
| 529 | """ |
| 530 | assert find_sql_refs(sql) == {SQLRef(table="prompts")} |
| 531 | |
| 532 | def test_with_schema(self) -> None: |
| 533 | sql = "SELECT * FROM schema1.table1;" |
nothing calls this directly
no test coverage detected