ruanhang1993 commented on code in PR #3939:
URL: https://github.com/apache/flink-cdc/pull/3939#discussion_r1986879305


##########
flink-cdc-runtime/src/main/java/org/apache/flink/cdc/runtime/operators/transform/TransformFilterProcessor.java:
##########
@@ -96,45 +96,48 @@ public boolean process(
                     expressionEvaluator.evaluate(generateParams(record, 
epochTime, opType, meta));
         } catch (InvocationTargetException e) {
             LOG.error(
-                    "Table:{} filter:{} execute failed. {}",
+                    "Table:{} filter:{} column name map:{} execute failed. {}",
                     tableInfo.getName(),
                     transformFilter.getExpression(),
+                    transformFilter.getColumnNameMap(),
                     e);
             throw new RuntimeException(e);
+        } catch (IllegalArgumentException e) {
+            throw e;

Review Comment:
   Why do we need to catch IllegalArgumentException here ?



-- 
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