This is an automated email from the ASF dual-hosted git repository.

fhueske pushed a change to branch 
fhueske-FLINK-39437-Support-interruptible-timers-in-PTFs
in repository https://gitbox.apache.org/repos/asf/flink.git


 discard bc076574596 [FLINK-39437][table] Support interruptible timers in PTFs
     add aedc8178e73 [FLINK-39480][ci] Python wheel on MacOS fails for all 2.x 
branches
     add 3afaa8cf645 [FLINK-39256][table] Support ORDER BY clause in Process 
Table Functions
     add 807ebc4f5e1 [FLINK-39437][table] Support interruptible timers in PTFs

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (bc076574596)
            \
             N -- N -- N   
refs/heads/fhueske-FLINK-39437-Support-interruptible-timers-in-PTFs 
(807ebc4f5e1)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .github/workflows/nightly.yml                      |   6 +-
 docs/content.zh/docs/dev/table/functions/ptfs.md   | 178 ++++++-
 docs/content/docs/dev/table/functions/ptfs.md      | 183 +++++++-
 flink-python/pyproject.toml                        |   4 +-
 .../apache/flink/table/api/PartitionedTable.java   |  33 +-
 .../apache/flink/table/api/internal/TableImpl.java |  27 +-
 .../resolver/rules/ResolveCallByArgumentsRule.java |  77 ++-
 .../table/operations/PartitionQueryOperation.java  |  93 +++-
 .../operations/utils/OperationTreeBuilder.java     |   8 +
 .../table/functions/ProcessTableFunction.java      | 104 ++++-
 .../flink/table/functions/TableSemantics.java      |  47 ++
 .../table/types/inference/SystemTypeInference.java |  91 +++-
 .../types/inference/utils/TableSemanticsMock.java  |  10 +
 .../planner/calcite/FlinkConvertletTable.java      |  22 +-
 .../table/planner/calcite/RexTableArgCall.java     | 201 +++++++-
 .../inference/CallBindingCallContext.java          |  37 +-
 .../inference/OperatorBindingCallContext.java      |  23 +-
 .../planner/plan/QueryOperationConverter.java      |  18 +-
 .../nodes/exec/serde/RexNodeJsonDeserializer.java  |  15 +-
 .../nodes/exec/serde/RexNodeJsonSerializer.java    |   8 +
 .../stream/StreamExecProcessTableFunction.java     |  75 ++-
 .../stream/StreamPhysicalProcessTableFunction.java |  31 ++
 .../ProjectWindowTableFunctionTransposeRule.java   |   4 +-
 .../table/api/QueryOperationSqlSemanticTest.java   |   5 +-
 .../api/QueryOperationSqlSerializationTest.java    |   5 +-
 .../table/api/QueryOperationTestPrograms.java      |  50 +-
 .../nodes/exec/serde/RexNodeJsonSerdeTest.java     |   4 +-
 .../stream/ProcessTableFunctionRestoreTests.java   |   4 +-
 .../stream/ProcessTableFunctionSemanticTests.java  |   5 +-
 .../stream/ProcessTableFunctionTestPrograms.java   | 284 +++++++++++
 .../exec/stream/ProcessTableFunctionTestUtils.java |  83 ++++
 .../plan/nodes/exec/testutils/RestoreTestBase.java |  14 +
 .../plan/stream/sql/ProcessTableFunctionTest.java  |  51 +-
 .../plan/stream/sql/ProcessTableFunctionTest.xml   |  23 +
 .../plan/process-multi-input-order-by-restore.json | 519 +++++++++++++++++++++
 .../savepoint/_metadata                            | Bin 0 -> 28159 bytes
 .../plan/process-order-by-restore.json}            | 127 ++---
 .../savepoint/_metadata                            | Bin 16811 -> 21613 bytes
 .../plan/metadata/FlinkRelMdHandlerTestBase.scala  |   2 +-
 .../runtime/generated/ProcessTableRunner.java      |  13 +-
 .../process/AbstractProcessTableOperator.java      |  12 +-
 .../operators/process/ExternalTimeContext.java     |   9 +
 .../runtime/operators/process/InputSortBuffer.java | 255 ++++++++++
 .../process/MailboxPartialWatermarkProcessor.java  | 153 ++++++
 .../operators/process/ProcessRowTableOperator.java |   6 +-
 .../operators/process/ProcessSetTableOperator.java | 162 ++++++-
 .../process/ProcessTableOperatorFactory.java       |  19 +-
 .../process/ReadableInternalTimeContext.java       |  12 +-
 .../operators/process/RuntimeTableSemantics.java   |  13 +-
 .../operators/process/InputSortBufferTest.java     | 461 ++++++++++++++++++
 .../MailboxPartialWatermarkProcessorTest.java      | 351 ++++++++++++++
 tools/maven/suppressions.xml                       |   2 +-
 52 files changed, 3747 insertions(+), 192 deletions(-)
 create mode 100644 
flink-table/flink-table-planner/src/test/resources/restore-tests/stream-exec-process-table-function_1/process-multi-input-order-by-restore/plan/process-multi-input-order-by-restore.json
 create mode 100644 
flink-table/flink-table-planner/src/test/resources/restore-tests/stream-exec-process-table-function_1/process-multi-input-order-by-restore/savepoint/_metadata
 copy 
flink-table/flink-table-planner/src/test/resources/restore-tests/stream-exec-process-table-function_1/{process-partitioned-named-timers-restore/plan/process-partitioned-named-timers-restore.json
 => process-order-by-restore/plan/process-order-by-restore.json} (73%)
 copy 
flink-table/flink-table-planner/src/test/resources/restore-tests/stream-exec-process-table-function_1/{process-partitioned-named-timers-restore
 => process-order-by-restore}/savepoint/_metadata (53%)
 create mode 100644 
flink-table/flink-table-runtime/src/main/java/org/apache/flink/table/runtime/operators/process/InputSortBuffer.java
 create mode 100644 
flink-table/flink-table-runtime/src/main/java/org/apache/flink/table/runtime/operators/process/MailboxPartialWatermarkProcessor.java
 create mode 100644 
flink-table/flink-table-runtime/src/test/java/org/apache/flink/table/runtime/operators/process/InputSortBufferTest.java
 create mode 100644 
flink-table/flink-table-runtime/src/test/java/org/apache/flink/table/runtime/operators/process/MailboxPartialWatermarkProcessorTest.java

Reply via email to