()
| 205 | |
| 206 | |
| 207 | def test_find_prev_keyword_using(): |
| 208 | q = "select * from tbl1 inner join tbl2 using (col1, " |
| 209 | kw, q2 = find_prev_keyword(q) |
| 210 | assert kw.value == "(" and q2 == "select * from tbl1 inner join tbl2 using (" |
| 211 | |
| 212 | |
| 213 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected