baomingyu opened a new pull request, #11820:
URL: https://github.com/apache/inlong/pull/11820

   CSV and KC format case 
   
   first support keep escape such as:
   CSV : aaa|bbbb|dd\cc ,
   when using keep escape configuration
   result is "aaa bbbb dd\cc"
   but default parse result is "aaa bbbb ddcc"
   
   kv : a=b&c=\=d
   when using keep escape configuration
   result values are "b \=d"
   but default parse result values are "b =d"
   
   second using line delimiter such as:
   CSV : aaa|bbbb|dd\n aaa|cc ,
   when using line delimiter '\n' configuration
   result is 
   "aaa bbbb dd"
   "aaa cc"
   but default parse result is "aaa bbbb dd aaa cc"
   
   kv : a=b&c=\nc=d
   when using line delimiter '\n' configuration
   result values are 
   "b  "
   "d"
   but default parse result values are "b  d"
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@inlong.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to