(sql)
| 8 | return re.sub(r'(create|CREATE)\s+(index|INDEX).+?\(.+?\)\s*;','',sql, flags=re.DOTALL) |
| 9 | |
| 10 | def remove_table(sql): |
| 11 | return re.sub(r'(table|TABLE).+?\(.+?\)\s*;','',sql, flags=re.DOTALL) |
| 12 | |
| 13 | def clean_sql(sql): |
| 14 | tmp = [] |
nothing calls this directly
no outgoing calls
no test coverage detected