()
| 635 | |
| 636 | |
| 637 | def test_3_statements_2nd_current(): |
| 638 | suggestions = suggest_type( |
| 639 | "select * from a; select * from ; select * from c", |
| 640 | "select * from a; select * from ", |
| 641 | ) |
| 642 | assert set(suggestions) == {FromClauseItem(schema=None), Schema()} |
| 643 | |
| 644 | suggestions = suggest_type("select * from a; select from b; select * from c", "select * from a; select ") |
| 645 | assert set(suggestions) == cols_etc("b", last_keyword="SELECT") |
| 646 | |
| 647 | |
| 648 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected