vernedeng commented on code in PR #10717:
URL: https://github.com/apache/inlong/pull/10717#discussion_r1689603608
##########
inlong-sdk/transform-sdk/src/main/java/org/apache/inlong/sdk/transform/pojo/CsvSourceInfo.java:
##########
@@ -28,17 +29,18 @@
* CsvSourceInfo
*/
@JsonIgnoreProperties(ignoreUnknown = true)
+@SuperBuilder
public class CsvSourceInfo extends SourceInfo {
- private String delimiter;
- private String escapeChar;
+ private Character delimiter;
+ private Character escapeChar;
Review Comment:
There will be a new decoder to extract messages with multi-characters as one
delimiter.
The performance gap between a one-character scenario and a multi-character
scenario is about 5-7 times
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]