()
| 15 | |
| 16 | |
| 17 | def test_simple_select_single_table(): |
| 18 | tables = extract_tables("select * from abc") |
| 19 | assert tables == ((None, "abc", None, False),) |
| 20 | |
| 21 | |
| 22 | @pytest.mark.parametrize("sql", ['select * from "abc"."def"', 'select * from abc."def"']) |
nothing calls this directly
no test coverage detected