(toks, start_idx, tables_with_alias, schema, default_tables)
| 407 | |
| 408 | |
| 409 | def parse_where(toks, start_idx, tables_with_alias, schema, default_tables): |
| 410 | idx = start_idx |
| 411 | len_ = len(toks) |
| 412 | |
| 413 | if idx >= len_ or toks[idx] != 'where': |
| 414 | return idx, [] |
| 415 | |
| 416 | idx += 1 |
| 417 | idx, conds = parse_condition(toks, idx, tables_with_alias, schema, default_tables) |
| 418 | return idx, conds |
| 419 | |
| 420 | |
| 421 | def parse_group_by(toks, start_idx, tables_with_alias, schema, default_tables): |
no test coverage detected