(expression)
| 123 | |
| 124 | @pytest.mark.parametrize("expression", ["SELECT * FROM "]) |
| 125 | def test_suggest_tables_views_schemas_and_functions(expression): |
| 126 | suggestions = suggest_type(expression, expression) |
| 127 | assert set(suggestions) == {FromClauseItem(schema=None), Schema()} |
| 128 | |
| 129 | |
| 130 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected