Skip to content
Snippets Groups Projects
Commit a5130748 authored by Daniel Lyons's avatar Daniel Lyons
Browse files

Merge branch 'add-bottom-writer' into '2.8.2-DEVELOPMENT'

Make sure that plain dictionaries are what come back from the core sampler

See merge request !1354
parents 8393a6f9 d666f12e
No related branches found
No related tags found
2 merge requests!1452Merge 2.8.2 to main,!1354Make sure that plain dictionaries are what come back from the core sampler
Pipeline #9896 passed
......@@ -63,7 +63,7 @@ class DictionaryKeeper(RowWriter):
self.items = []
def write_rows(self, table: Table, rows: List[Dict]):
self.items.append({"table": table.name, "items": rows})
self.items.append({"table": table.name, "items": [dict(row) for row in rows]})
def close(self):
"""A no-op; nothing to do here"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment