(tlist)
| 261 | |
| 262 | @recurse(sql.Over) |
| 263 | def group_over(tlist): |
| 264 | tidx, token = tlist.token_next_by(m=sql.Over.M_OPEN) |
| 265 | while token: |
| 266 | nidx, next_ = tlist.token_next(tidx) |
| 267 | if imt(next_, i=sql.Parenthesis, t=T.Name): |
| 268 | tlist.group_tokens(sql.Over, tidx, nidx) |
| 269 | tidx, token = tlist.token_next_by(m=sql.Over.M_OPEN, idx=tidx) |
| 270 | |
| 271 | |
| 272 | def group_arrays(tlist): |
nothing calls this directly
no test coverage detected
searching dependent graphs…