This is an automated email from the ASF dual-hosted git repository.
lincoln pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
from 1c524794362 [FLINK-30617][hive] Fix wrong data type for cast null
literal with Hive dialect
new 6cf7e5d2ba4 [FLINK-30661][table] introduce
SupportsRowLevelModificationScan interface
new 69837fc6145 [FLINK-30661][table] introduce SupportsDeletePushDown
interface
new e25ea3fe1d9 [FLINK-30661][table] introduce SupportsRowLevelDelete
interface
new 904c695776a [FLINK-30661][table] introduce SupportsRowLevelUpdate
interface
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:
.../connector/RowLevelModificationScanContext.java | 39 +++++++
.../sink/abilities/SupportsDeletePushDown.java | 82 +++++++++++++++
.../sink/abilities/SupportsRowLevelDelete.java | 114 +++++++++++++++++++++
.../sink/abilities/SupportsRowLevelUpdate.java | 113 ++++++++++++++++++++
.../SupportsRowLevelModificationScan.java | 80 +++++++++++++++
5 files changed, 428 insertions(+)
create mode 100644
flink-table/flink-table-common/src/main/java/org/apache/flink/table/connector/RowLevelModificationScanContext.java
create mode 100644
flink-table/flink-table-common/src/main/java/org/apache/flink/table/connector/sink/abilities/SupportsDeletePushDown.java
create mode 100644
flink-table/flink-table-common/src/main/java/org/apache/flink/table/connector/sink/abilities/SupportsRowLevelDelete.java
create mode 100644
flink-table/flink-table-common/src/main/java/org/apache/flink/table/connector/sink/abilities/SupportsRowLevelUpdate.java
create mode 100644
flink-table/flink-table-common/src/main/java/org/apache/flink/table/connector/source/abilities/SupportsRowLevelModificationScan.java