aiwenmo commented on code in PR #3740:
URL: https://github.com/apache/flink-cdc/pull/3740#discussion_r1855859241
##########
flink-cdc-runtime/src/main/java/org/apache/flink/cdc/runtime/parser/TransformParser.java:
##########
@@ -588,7 +585,8 @@ public static String normalizeFilter(String projection,
String filter) {
public static boolean hasAsterisk(@Nullable String projection) {
if (isNullOrWhitespaceOnly(projection)) {
- return false;
+ // Providing an empty projection expression is equivalent to
writing `*` explicitly.
+ return true;
Review Comment:
I'll rebase it tonight.
--
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]