xishuaidelin commented on code in PR #25892: URL: https://github.com/apache/flink/pull/25892#discussion_r1922008106
########## flink-table/flink-table-planner/src/test/java/org/apache/flink/table/planner/factories/TestValuesRuntimeFunctions.java: ########## @@ -518,13 +518,17 @@ public void initializeState(FunctionInitializationContext context) throws Except .flatMap(List::stream) .forEach( row -> { - boolean isDelete = row.getKind() == RowKind.DELETE; + boolean isDelete = + row.getKind() == RowKind.DELETE + || row.getKind() == RowKind.UPDATE_BEFORE; Review Comment: Nit: Do we need add UB here? IIUC, UB message will not appear 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