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