(toks, start_idx, tables_with_alias, schema, default_tables)
| 498 | |
| 499 | |
| 500 | def parse_having(toks, start_idx, tables_with_alias, schema, default_tables): |
| 501 | idx = start_idx |
| 502 | len_ = len(toks) |
| 503 | |
| 504 | if idx >= len_ or toks[idx] != 'having': |
| 505 | return idx, [] |
| 506 | |
| 507 | idx += 1 |
| 508 | idx, conds = parse_condition(toks, idx, tables_with_alias, schema, default_tables) |
| 509 | return idx, conds |
| 510 | |
| 511 | |
| 512 | def parse_limit(toks, start_idx): |
no test coverage detected