Skip to content
Snippets Groups Projects
Commit b54b1e75 authored by Erik Johnston's avatar Erik Johnston
Browse files

Fix SQLite take 2

parent afb6d9d5
No related branches found
No related tags found
No related merge requests found
......@@ -1718,4 +1718,4 @@ def make_in_list_sql_clause(
# stats easier to understand.
return "%s = ANY(?)" % (column,), [list(iterable)]
else:
return "%s IN (%s)" % (column, ",".join("?" for _ in iterable)), iterable
return "%s IN (%s)" % (column, ",".join("?" for _ in iterable)), list(iterable)
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