(sql)
| 219 | ], |
| 220 | ) |
| 221 | def test_find_prev_keyword_where(sql): |
| 222 | kw, stripped = find_prev_keyword(sql) |
| 223 | assert kw.value == "where" and stripped == "select * from foo where" |
| 224 | |
| 225 | |
| 226 | @pytest.mark.parametrize("sql", ["create table foo (bar int, baz ", "select * from foo() as bar (baz "]) |
nothing calls this directly
no test coverage detected