()
| 139 | |
| 140 | |
| 141 | def test_parse_div_operator(): |
| 142 | p = sqlparse.parse('col1 DIV 5 AS div_col1')[0].tokens |
| 143 | assert p[0].tokens[0].tokens[2].ttype is T.Operator |
| 144 | assert p[0].get_alias() == 'div_col1' |
| 145 | |
| 146 | |
| 147 | def test_quoted_identifier(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…