()
| 215 | |
| 216 | |
| 217 | def test_find_prev_keyword_using(): |
| 218 | q = 'select * from tbl1 inner join tbl2 using (col1, ' |
| 219 | kw, q2 = find_prev_keyword(q) |
| 220 | assert kw.value == '(' and q2 == 'select * from tbl1 inner join tbl2 using (' |
| 221 | |
| 222 | |
| 223 | @pytest.mark.parametrize('sql', [ |
nothing calls this directly
no test coverage detected