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
Some CSV files generated by MS Dynamics / MS SQL contain \r\r\n newlines.
Right now we are transforming \r\r\n -> \r\n in the input before passing it to the CsvParsingStage. However, it should be pretty easy to support this format by modifying CsvParser FSM (adding a CR->AfterCr transition in the AfterCr state).
Does it make sense to support this non-standard format? If so, I could submit a PR.
The text was updated successfully, but these errors were encountered:
Some CSV files generated by MS Dynamics / MS SQL contain
\r\r\n
newlines.Right now we are transforming
\r\r\n
->\r\n
in the input before passing it to theCsvParsingStage
. However, it should be pretty easy to support this format by modifyingCsvParser
FSM (adding a CR->AfterCr
transition in theAfterCr
state).Does it make sense to support this non-standard format? If so, I could submit a PR.
The text was updated successfully, but these errors were encountered: