(sql)
| 225 | |
| 226 | @pytest.mark.parametrize("sql", ["create table foo (bar int, baz ", "select * from foo() as bar (baz "]) |
| 227 | def test_find_prev_keyword_open_parens(sql): |
| 228 | kw, _ = find_prev_keyword(sql) |
| 229 | assert kw.value == "(" |
| 230 | |
| 231 | |
| 232 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected