()
| 107 | |
| 108 | |
| 109 | def test_select_suggests_cols_and_funcs(): |
| 110 | suggestions = suggest_type("SELECT ", "SELECT ") |
| 111 | assert set(suggestions) == { |
| 112 | Column(table_refs=(), qualifiable=True), |
| 113 | Function(schema=None), |
| 114 | Keyword("SELECT"), |
| 115 | } |
| 116 | |
| 117 | |
| 118 | @pytest.mark.parametrize("expression", ["INSERT INTO ", "COPY ", "UPDATE ", "DESCRIBE "]) |
nothing calls this directly
no test coverage detected