Skip to content

Commit

Permalink
compare to list
Browse files Browse the repository at this point in the history
  • Loading branch information
tsmonteiro committed Aug 27, 2024
1 parent 4432f89 commit 64fff8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workflow_funcs/workflow_compare.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ def compare_schema(client, tableIdx, schema, refSchema, tol=0, tolType="absolute
util.msg("Comparing {} against {}".format(colNames[ci], refColNames[ci]), verbose=verbose)
col = th.decodeTSON(client.tableSchemaService.selectStream(schema.id, [colNames[ci]], 0, -1))
refCol = th.decodeTSON(client.tableSchemaService.selectStream(refSchema.id, [refColNames[ci]], 0, -1))
colVals = col["columns"][0]["values"]
refColVals = refCol["columns"][0]["values"]
colVals = list(col["columns"][0]["values"])
refColVals = list(refCol["columns"][0]["values"])



Expand Down

0 comments on commit 64fff8e

Please sign in to comment.