Extract column names from INSERT column specification.
(col_str)
| 167 | |
| 168 | |
| 169 | def column_map(col_str): |
| 170 | """Extract column names from INSERT column specification.""" |
| 171 | clean = [c.strip('` ') for c in col_str.split(',')] |
| 172 | return clean |
| 173 | |
| 174 | |
| 175 | def stream_inserts(filepath): |
nothing calls this directly
no outgoing calls
no test coverage detected