()
| 627 | |
| 628 | |
| 629 | def test_2_statements_1st_current(): |
| 630 | suggestions = suggest_type("select * from ; select * from b", "select * from ") |
| 631 | assert set(suggestions) == {FromClauseItem(schema=None), Schema()} |
| 632 | |
| 633 | suggestions = suggest_type("select from a; select * from b", "select ") |
| 634 | assert set(suggestions) == cols_etc("a", last_keyword="SELECT") |
| 635 | |
| 636 | |
| 637 | def test_3_statements_2nd_current(): |
nothing calls this directly
no test coverage detected