MCPcopy
hub / github.com/AbdullahGhanem/quran-database / column_map

Function column_map

convert_to_sqlite.py:169–172  ·  view source on GitHub ↗

Extract column names from INSERT column specification.

(col_str)

Source from the content-addressed store, hash-verified

167
168
169def 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
175def stream_inserts(filepath):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected