This is an automated email from the ASF dual-hosted git repository.
wanglijie pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
from 7e2bc6e8d21 [FLINK-32354][table] Supports executing call procedure
statement This closes #22994
new 47596ea9250 [FLINK-32493][table-runtime] Introduce
LocalRuntimeFilterBuilderOperator
new 41b35260bba [FLINK-32493][table-runtime] Introduce
GlobalRuntimeFilterBuilderOperator
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../GlobalRuntimeFilterBuilderOperator.java | 94 +++++++++++
.../LocalRuntimeFilterBuilderOperator.java | 97 ++++++++++++
.../runtimefilter/util/RuntimeFilterUtils.java | 53 +++++++
.../GlobalRuntimeFilterBuilderOperatorTest.java | 173 +++++++++++++++++++++
.../LocalRuntimeFilterBuilderOperatorTest.java | 160 +++++++++++++++++++
5 files changed, 577 insertions(+)
create mode 100644
flink-table/flink-table-runtime/src/main/java/org/apache/flink/table/runtime/operators/runtimefilter/GlobalRuntimeFilterBuilderOperator.java
create mode 100644
flink-table/flink-table-runtime/src/main/java/org/apache/flink/table/runtime/operators/runtimefilter/LocalRuntimeFilterBuilderOperator.java
create mode 100644
flink-table/flink-table-runtime/src/main/java/org/apache/flink/table/runtime/operators/runtimefilter/util/RuntimeFilterUtils.java
create mode 100644
flink-table/flink-table-runtime/src/test/java/org/apache/flink/table/runtime/operators/runtimefilter/GlobalRuntimeFilterBuilderOperatorTest.java
create mode 100644
flink-table/flink-table-runtime/src/test/java/org/apache/flink/table/runtime/operators/runtimefilter/LocalRuntimeFilterBuilderOperatorTest.java