(text)
| 841 | ["SELECT * FROM foo where created > now() - ", "select * from foo where bar "], |
| 842 | ) |
| 843 | def test_suggest_where_keyword(text): |
| 844 | # https://github.com/dbcli/mycli/issues/135 |
| 845 | suggestions = suggest_type(text, text) |
| 846 | assert set(suggestions) == cols_etc("foo", last_keyword="WHERE") |
| 847 | |
| 848 | |
| 849 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected