(toks, start_idx, tables_with_alias, schema, default_tables)
| 436 | |
| 437 | |
| 438 | def parse_where(toks, start_idx, tables_with_alias, schema, default_tables): |
| 439 | idx = start_idx |
| 440 | len_ = len(toks) |
| 441 | |
| 442 | if idx >= len_ or toks[idx] != 'where': |
| 443 | return idx, [] |
| 444 | |
| 445 | idx += 1 |
| 446 | idx, conds = parse_condition(toks, idx, tables_with_alias, schema, default_tables) |
| 447 | return idx, conds |
| 448 | |
| 449 | |
| 450 | def parse_group_by(toks, start_idx, tables_with_alias, schema, default_tables): |
no test coverage detected