This is an automated email from the ASF dual-hosted git repository.
guoweijie pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
from e383400ef20 [FLINK-36824][table] Backport support table function calls
in `FROM` clause without `TABLE()` wrapper
new abd288a6106 [FLINK-36815][API] Make ExecutionEnvironment#fromSource
return ProcessConfigurableAndNonKeyedPartitionStream
new 94a6ed03bff [FLINK-36815][API] Introduce subtask index and attempt id
in TaskInfo for DSv2
new efbeaaa1576 [FLINK-36815][API] Open and close user function in DSv2
ProcessOperators
new dbd21cf56af [FLINK-36815][API] Introduce a NonPartitionedContext
parameter in Open method of UserFunction for DSv2
The 4 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:
.../flink/datastream/api/ExecutionEnvironment.java | 5 +-
.../flink/datastream/api/context/TaskInfo.java | 17 ++
.../function/OneInputStreamProcessFunction.java | 12 ++
.../datastream/api/function/ProcessFunction.java | 12 --
.../TwoInputBroadcastStreamProcessFunction.java | 12 ++
.../TwoInputNonBroadcastStreamProcessFunction.java | 12 ++
.../function/TwoOutputStreamProcessFunction.java | 12 ++
.../datastream/impl/ExecutionEnvironmentImpl.java | 9 +-
.../impl/context/DefaultRuntimeContext.java | 6 +-
.../datastream/impl/context/DefaultTaskInfo.java | 23 ++-
.../datastream/impl/operators/ProcessOperator.java | 9 +
.../TwoInputBroadcastProcessOperator.java | 9 +
.../TwoInputNonBroadcastProcessOperator.java | 9 +
.../impl/operators/TwoOutputProcessOperator.java | 9 +
.../context/DefaultNonPartitionedContextTest.java | 4 +
.../impl/context/DefaultTaskInfoTest.java | 4 +-
.../DefaultTwoOutputNonPartitionedContextTest.java | 4 +
.../impl/functions/ProcessFunctionTest.java | 202 +++++++++++++++++++++
18 files changed, 350 insertions(+), 20 deletions(-)
create mode 100644
flink-datastream/src/test/java/org/apache/flink/datastream/impl/functions/ProcessFunctionTest.java