()
| 293 | |
| 294 | |
| 295 | def test_array_literal(): |
| 296 | # See issue #176 |
| 297 | p = sqlparse.parse('ARRAY[%s, %s]')[0] |
| 298 | assert len(p.tokens) == 2 |
| 299 | assert len(list(p.flatten())) == 7 |
| 300 | |
| 301 | |
| 302 | def test_typed_array_definition(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…