()
| 52 | |
| 53 | |
| 54 | def test_simple_select_single_table(): |
| 55 | tables = extract_tables('select * from abc') |
| 56 | assert tables == [(None, 'abc', None)] |
| 57 | |
| 58 | |
| 59 | def test_simple_select_single_table_schema_qualified(): |
nothing calls this directly
no test coverage detected