()
| 242 | |
| 243 | |
| 244 | def test_grouping_identifiers_with_operators(): |
| 245 | p = sqlparse.parse('a+b as c from table where (d-e)%2= 1')[0] |
| 246 | assert len([x for x in p.flatten() if x.ttype == T.Name]) == 5 |
| 247 | |
| 248 | |
| 249 | def test_grouping_identifier_list_with_order(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…