()
| 128 | |
| 129 | |
| 130 | def test_parse_nested_function(): |
| 131 | t = sqlparse.parse('foo(bar(5))')[0].tokens[0].get_parameters() |
| 132 | assert len(t) == 1 |
| 133 | assert type(t[0]) is sql.Function |
| 134 | |
| 135 | |
| 136 | def test_parse_casted_params(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…