You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by GitBox <gi...@apache.org> on 2022/03/01 10:20:14 UTC

[GitHub] [flink] twalthr commented on a change in pull request #18879: [FLINK-26280][table-planner] Add 'table.exec.legacy-transformation-uids' to support old transformation uid generation behaviour

twalthr commented on a change in pull request #18879:
URL: https://github.com/apache/flink/pull/18879#discussion_r816632406



##########
File path: flink-table/flink-table-planner/src/main/java/org/apache/flink/table/planner/plan/nodes/exec/common/CommonExecTableSourceScan.java
##########
@@ -131,15 +133,17 @@ public DynamicTableSourceSpec getTableSourceSpec() {
         } else if (provider instanceof DataStreamScanProvider) {
             Transformation<RowData> transformation =
                     ((DataStreamScanProvider) provider)
-                            .produceDataStream(createProviderContext(), env)
+                            .produceDataStream(
+                                    createProviderContext(planner.getConfiguration()), env)

Review comment:
       Use the new `ExecNodeConfig` here. `planner.getConfiguration()` should not be accessed directly anymore.




-- 
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-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org