This is an automated email from the ASF dual-hosted git repository. pnowojski pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/flink.git
commit 825400b6f658372186fa9787a9406776d60fac14 Author: Piotr Nowojski <[email protected]> AuthorDate: Wed Feb 11 15:52:15 2026 +0100 [hotfix] Fix formatting --- .../apache/flink/table/planner/plan/rules/logical/RemoteCallFinder.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/flink-table/flink-table-planner/src/main/scala/org/apache/flink/table/planner/plan/rules/logical/RemoteCallFinder.java b/flink-table/flink-table-planner/src/main/scala/org/apache/flink/table/planner/plan/rules/logical/RemoteCallFinder.java index 286d44e34a7..911b9fb133f 100644 --- a/flink-table/flink-table-planner/src/main/scala/org/apache/flink/table/planner/plan/rules/logical/RemoteCallFinder.java +++ b/flink-table/flink-table-planner/src/main/scala/org/apache/flink/table/planner/plan/rules/logical/RemoteCallFinder.java @@ -27,8 +27,10 @@ public interface RemoteCallFinder { // If the node contains directly or indirectly a remote call. boolean containsRemoteCall(RexNode node); + // If the node contains directly or indirectly a non-remote call. boolean containsNonRemoteCall(RexNode node); + // If the node contains directly a remote call. boolean isRemoteCall(RexNode node);
