Skip to content

Commit

Permalink
Make update work with long scalar values (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
akariv authored and roll committed Mar 13, 2018
1 parent d4a0489 commit afa4e04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tableschema_sql/writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def __prepare_bloom(self):
columns = [getattr(self.__table.c, key) for key in self.__update_keys]
keys = select(columns).execution_options(stream_results=True).execute()
for key in keys:
self.__bloom.add(key)
self.__bloom.add(tuple(key))

def __insert(self):
"""Insert rows to table
Expand Down

0 comments on commit afa4e04

Please sign in to comment.