MCPcopy Create free account
hub / github.com/explorerhq/sql-explorer / process_rows

Method process_rows

explorer/models.py:340–345  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

338 self.headers[ix].add_summary(self.column(ix))
339
340 def process_rows(self):
341 transforms = self._get_transforms()
342 if transforms:
343 for r in self.data:
344 for ix, t in transforms:
345 r[ix] = t.format(str(r[ix]))
346
347 def execute_query(self):
348 cursor = self.connection.cursor()

Callers 1

processMethod · 0.95

Calls 1

_get_transformsMethod · 0.95

Tested by

no test coverage detected