Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions backend/onyx/connectors/salesforce/sqlite_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,9 @@ def update_from_csv(
if self._conn is None:
raise RuntimeError("Database connection is closed")

# some customers need this to be larger than the default 128KB, go with 16MB
csv.field_size_limit(16 * 1024 * 1024)

updated_ids = []

with self._conn:
Expand Down
Loading