MOBIN-F opened a new pull request, #3572: URL: https://github.com/apache/flink-cdc/pull/3572
Currently, such transform rule could not work: ```yaml transform: projection: 'A' as result filter: tag >= 0 projection: score as result filter: tag < 0 ``` Here, `score` column will be filtered out in PreTransform stage, since it wasn't referenced in the first transform rule. As a result, the following transform rule will fail since `score` does not exist in PostTransform operator. -- 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]
