Fix CSV import exception for multiline quoted field values#641
Merged
fjalvingh merged 1 commit intoskarp-masterfrom Apr 24, 2026
Merged
Fix CSV import exception for multiline quoted field values#641fjalvingh merged 1 commit intoskarp-masterfrom
fjalvingh merged 1 commit intoskarp-masterfrom
Conversation
Enable multiLine() and doubleQuotes() support in CsvRowReader when
importing CSV files through Importers.createImporter(). These are
standard RFC 4180 CSV features that were not enabled.
Previously, CSV files containing newline characters inside quoted
fields would throw an ImportValueException with "newline inside
quoted field and multiline import not enabled". CSV files containing
escaped double quotes ("") inside fields would throw "expecting
the field separator here but got \"".
This affected all data source types using the shared ImportDialog
(Bryder, Empire, DB, etc.) as well as BryderImportDialog.
https://skarp-sector-intelligence.monday.com/boards/1096296372/pulses/11638249542
https://skarp-sector-intelligence.monday.com/boards/1096296372/pulses/11639299454
37752d1 to
2bcb996
Compare
fjalvingh
approved these changes
Apr 24, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Enable multiline support in CsvRowReader when importing CSV files through Importers.createImporter(). Previously, CSV files containing newline characters inside quoted fields (valid per RFC 4180) would throw an ImportValueException with "newline inside quoted field and multiline import not enabled".
https://skarp-sector-intelligence.monday.com/boards/1096296372/pulses/11638249542
https://skarp-sector-intelligence.monday.com/boards/1096296372/pulses/11639299454