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
{{ message }}
This repository was archived by the owner on Jan 22, 2019. It is now read-only.
I'm using jackson to convert TSV piped output (from mysql command) to CSV. Right now I have to pick a character that will never happen to avoid the _nextQuotedString processing block , since this output is never quoted. If a cell starts with the quote char, it asplodes.
So I'd rather disable the quote char entirely. This is what I'm currently doing which for my input which effectively disables quoted cells.
This works, but is semantically inaccurate (I think?). Would it be possible to disable the quoteChar (and thus quoted cell values) altogether, to prevent any accidental interpretation of ANY character as starting a quoted value?