(schema, query)
| 581 | |
| 582 | |
| 583 | def get_sql(schema, query): |
| 584 | toks = tokenize(query) |
| 585 | tables_with_alias = get_tables_with_alias(schema.schema, toks) |
| 586 | _, sql = parse_sql(toks, 0, tables_with_alias, schema) |
| 587 | |
| 588 | return sql |
| 589 | |
| 590 | |
| 591 | def skip_semicolon(toks, start_idx): |
no test coverage detected