lvyanquan commented on code in PR #3468:
URL: https://github.com/apache/flink-cdc/pull/3468#discussion_r1673534997
##########
flink-cdc-runtime/src/main/java/org/apache/flink/cdc/runtime/operators/transform/TransformDataOperator.java:
##########
@@ -412,4 +417,8 @@ private void clearOperator() {
this.transformFilterProcessorMap = null;
TransformExpressionCompiler.cleanUp();
}
+
+ private String opTypeToRowKind(OperationType opType, boolean isBefore) {
+ return String.format("%c%c", opType.name().charAt(0), (isBefore ? '-'
: '+'));
Review Comment:
opType.name().charAt(0) should be put at second position.
--
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]