This is an automated email from the ASF dual-hosted git repository.
godfrey pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
from 94fba321d4e [FLINK-22318][table] Support RENAME column name for ALTER
TABLE statement, optimize the code implementation
new 62a9d837e24 [FLINK-28850][table-planner] pre-step: copy Snapshot node
from calcite to support alias of LOOKUP hint
new f32ba645246 [FLINK-28850][table-planner] cherry-pick CALCITE-5251 to
support hint for Snapshot node
new be6b1c94ef3 [FLINK-28850][table-planner] Support table alias in LOOKUP
hint
The 3 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:
.../content.zh/docs/dev/table/sql/queries/hints.md | 2 +-
docs/content/docs/dev/table/sql/queries/hints.md | 2 +-
.../java/org/apache/calcite/rel/core/Snapshot.java | 134 +++++++++++
.../apache/calcite/rel/hint/HintPredicates.java | 7 +
.../calcite/rel/hint/NodeTypeHintPredicate.java | 6 +-
.../calcite/rel/logical/LogicalSnapshot.java | 34 ++-
.../flink/table/planner/hint/FlinkHints.java | 1 -
.../nodes/exec/stream/LookupJoinJsonPlanTest.java | 10 +-
.../plan/stream/sql/join/LookupJoinTest.xml | 260 +++++++++++++++++----
.../plan/stream/sql/join/LookupJoinTest.scala | 66 ++++--
.../runtime/stream/sql/AsyncLookupJoinITCase.scala | 6 +-
.../runtime/stream/sql/LookupJoinITCase.scala | 8 +-
12 files changed, 452 insertions(+), 84 deletions(-)
create mode 100644
flink-table/flink-table-planner/src/main/java/org/apache/calcite/rel/core/Snapshot.java