(schema, query)
| 548 | |
| 549 | |
| 550 | def get_sql(schema, query): |
| 551 | toks = tokenize(query) |
| 552 | tables_with_alias = get_tables_with_alias(schema.schema, toks) |
| 553 | _, sql = parse_sql(toks, 0, tables_with_alias, schema) |
| 554 | |
| 555 | return sql |
| 556 | |
| 557 | |
| 558 | def skip_semicolon(toks, start_idx): |
no test coverage detected