format
(old_col)
| 258 | return outs |
| 259 | |
| 260 | def _format_col(old_col): |
| 261 | """format""" |
| 262 | if old_col.lower().startswith('table_'): |
| 263 | return old_col.split('.', 1)[1] |
| 264 | else: |
| 265 | return old_col |
| 266 | |
| 267 | if 'where' not in query: |
| 268 | cond_index = len(query) |