You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We had initially added quoting_behavior to support the newlines_in_values field from the legacy S3 destination that uses pyarrow. After some testing of various CSV inputs with newlines, we should be able to support newlines as long as we pass csv.QUOTE_MINIMAL to the parser which is also the default.
Acceptance Criteria
The quoting_behavior config is removed from the CsvFormat
When creating the new dialect incsv_parser.py, the csv.QUOTE_MINIMAL is explicitly passed. We want to explicitly use this to make it obvious which behavior we use in case the default behavior changes
The resulting spec message does not have quoting_behavior and test configs have it removed
The text was updated successfully, but these errors were encountered:
What
We had initially added
quoting_behavior
to support thenewlines_in_values
field from the legacy S3 destination that uses pyarrow. After some testing of various CSV inputs with newlines, we should be able to support newlines as long as we pass csv.QUOTE_MINIMAL to the parser which is also the default.Acceptance Criteria
quoting_behavior
config is removed from the CsvFormatcsv_parser.py
, thecsv.QUOTE_MINIMAL
is explicitly passed. We want to explicitly use this to make it obvious which behavior we use in case the default behavior changesspec
message does not havequoting_behavior
and test configs have it removedThe text was updated successfully, but these errors were encountered: