()
| 98 | |
| 99 | |
| 100 | def test_lparen_suggests_cols_and_funcs(): |
| 101 | suggestion = suggest_type("SELECT MAX( FROM tbl", "SELECT MAX(") |
| 102 | assert set(suggestion) == { |
| 103 | Column(table_refs=((None, "tbl", None, False),), qualifiable=True), |
| 104 | Function(schema=None), |
| 105 | Keyword("("), |
| 106 | } |
| 107 | |
| 108 | |
| 109 | def test_select_suggests_cols_and_funcs(): |
nothing calls this directly
no test coverage detected