SML0127 opened a new pull request, #3658:
URL: https://github.com/apache/flink-cdc/pull/3658

   The function to convert json to string is different in the snapshot step and 
the binlog step. 
   This causes the following differences.
   ```d
   original data : {"key": "value", "key1": "value1"}
   snapshot : {"key": "value", "key1": "value1"}
   binlog : {"key":"value","key1":"value1"} // no whitespace
   ```
    
   
   So I modified JsonStringFormatter and added it to flink-cdc
   - modified code line
       - line 105: Added whitespace before value
       - line 207: Added whitespace after comma
   
   
    


-- 
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: issues-unsubscr...@flink.apache.org

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

Reply via email to