(expression)
| 87 | |
| 88 | @pytest.mark.parametrize("expression", ["SELECT 1 AS ", "SELECT 1 FROM tabl AS "]) |
| 89 | def test_after_as(expression): |
| 90 | suggestions = suggest_type(expression, expression) |
| 91 | assert set(suggestions) == set() |
| 92 | |
| 93 | |
| 94 | def test_where_equals_any_suggests_columns_or_keywords(): |
nothing calls this directly
no test coverage detected