()
| 271 | |
| 272 | |
| 273 | def test_array_index_function_result(): |
| 274 | p = sqlparse.parse('somefunc()[1]')[0].tokens |
| 275 | assert len(p) == 1 |
| 276 | assert len(list(p[0].get_array_indices())) == 1 |
| 277 | |
| 278 | |
| 279 | def test_schema_qualified_array_index(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…