(toks, start_idx, tables_with_alias, schema, default_tables)
| 469 | |
| 470 | |
| 471 | def parse_having(toks, start_idx, tables_with_alias, schema, default_tables): |
| 472 | idx = start_idx |
| 473 | len_ = len(toks) |
| 474 | |
| 475 | if idx >= len_ or toks[idx] != 'having': |
| 476 | return idx, [] |
| 477 | |
| 478 | idx += 1 |
| 479 | idx, conds = parse_condition(toks, idx, tables_with_alias, schema, default_tables) |
| 480 | return idx, conds |
| 481 | |
| 482 | |
| 483 | def parse_limit(toks, start_idx): |
no test coverage detected