twalthr commented on a change in pull request #6299: [FLINK-9713][table][sql] 
Support processing time versioned joins
URL: https://github.com/apache/flink/pull/6299#discussion_r208539632
 
 

 ##########
 File path: 
flink-libraries/flink-table/src/main/scala/org/apache/flink/table/plan/rules/logical/LogicalCorrelateToVersionedJoinRule.scala
 ##########
 @@ -0,0 +1,243 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.flink.table.plan.rules.logical
+
+import java.util
+import java.util.Collections
+
+import org.apache.calcite.plan.RelOptRule.{any, none, operand, some}
+import org.apache.calcite.plan.{RelOptRule, RelOptRuleCall}
+import org.apache.calcite.rel.RelNode
+import org.apache.calcite.rel.core.TableFunctionScan
+import org.apache.calcite.rel.logical.LogicalCorrelate
+import org.apache.calcite.rex._
+import org.apache.calcite.sql.fun.SqlCastFunction
+import org.apache.flink.table.api.{Table, ValidationException}
+import org.apache.flink.table.functions.TableVersionFunction
+import org.apache.flink.table.functions.sql.ProctimeSqlFunction
+import org.apache.flink.table.functions.utils.TableSqlFunction
+import org.apache.flink.table.plan.logical.rel.LogicalVersionedJoin
+import org.apache.flink.table.plan.schema.TimeIndicatorRelDataType
+import org.apache.flink.table.plan.util.RexDefaultVisitor
+import org.apache.flink.table.typeutils.TypeStringUtils
+import org.apache.flink.util.Preconditions.checkState
+
+class LogicalCorrelateToVersionedJoinRule
+  extends RelOptRule(
+    operand(classOf[LogicalCorrelate],
+      some(
+        operand(classOf[RelNode], any()),
+        operand(classOf[TableFunctionScan], none()))),
+    "LogicalCorrelateToVersionedJoinRule") {
+
+  override def onMatch(call: RelOptRuleCall): Unit = {
+    val logicalCorrelate: LogicalCorrelate = call.rel(0)
+    val leftNode: RelNode = call.rel(1)
+    val rightTableFunctionScan: TableFunctionScan = call.rel(2)
+
+    val cluster = logicalCorrelate.getCluster
+
+    new GetTableVersionFunctionCall(cluster.getRexBuilder, leftNode)
+      .visit(rightTableFunctionScan.getCall) match {
+      case Some(rightVersionedTableCall) =>
+        val underlyingTableHistory: Table = 
rightVersionedTableCall.tableVersionFunction.table
+        val relBuilder = this.relBuilderFactory.create(
+          cluster,
+          underlyingTableHistory.relBuilder.getRelOptSchema)
+        val rexBuilder = cluster.getRexBuilder
+
+        val rightNode: RelNode = 
underlyingTableHistory.logicalPlan.toRelNode(relBuilder)
+
+        val rightVersionExpression = createRightExpression(
+          rexBuilder,
+          leftNode,
+          rightNode,
+          rightVersionedTableCall.tableVersionFunction.versionField)
+
+        val rightPrimaryKeyExpression = createRightExpression(
+          rexBuilder,
+          leftNode,
+          rightNode,
+          rightVersionedTableCall.tableVersionFunction.primaryKey)
+
+        relBuilder.push(
+          if (rightVersionedTableCall.tableVersionFunction.isProctime) {
+            LogicalVersionedJoin.create(
+              rexBuilder,
+              cluster,
+              logicalCorrelate.getTraitSet,
+              leftNode,
+              rightNode,
+              rightVersionedTableCall.versionExpression,
+              rightPrimaryKeyExpression)
+          }
+          else {
+            LogicalVersionedJoin.create(
+              rexBuilder,
+              cluster,
+              logicalCorrelate.getTraitSet,
+              leftNode,
+              rightNode,
+              rightVersionedTableCall.versionExpression,
+              rightVersionExpression,
+              rightPrimaryKeyExpression)
+          })
+        call.transformTo(relBuilder.build())
+      case None =>
+    }
+  }
+
+  private def createRightExpression(
+      rexBuilder: RexBuilder,
+      leftNode: RelNode,
+      rightNode: RelNode,
+      field: String): RexNode = {
+    val rightReferencesOffset = leftNode.getRowType.getFieldCount
+    val rightDataTypeField = rightNode.getRowType.getField(field, false, false)
+    rexBuilder.makeInputRef(
+      rightDataTypeField.getType, rightReferencesOffset + 
rightDataTypeField.getIndex)
+  }
+}
+
+object LogicalCorrelateToVersionedJoinRule {
+  val INSTANCE: RelOptRule = new LogicalCorrelateToVersionedJoinRule
+}
+
+/**
+  * Simple pojo class for extracted [[TableVersionFunction]] with version 
expression
+  * extracted by [[VersionExpressionExtractor]].
+  */
+class TableVersionFunctionCall(
+    var tableVersionFunction: TableVersionFunction,
+    var versionExpression: RexNode) {
+}
+
+/**
+  * Find [[TableVersionFunction]] call and run [[VersionExpressionExtractor]] 
on it's operand.
+  */
+class GetTableVersionFunctionCall(
+    var rexBuilder: RexBuilder,
+    var leftSide: RelNode)
+  extends RexVisitorImpl[TableVersionFunctionCall](false) {
+
+  def visit(node: RexNode): Option[TableVersionFunctionCall] = {
+    val result = node.accept(this)
+    if (result == null) {
+      return None
+    }
+    Some(result)
+  }
+
+  override def visitCall(rexCall: RexCall): TableVersionFunctionCall = {
+    if (!rexCall.getOperator.isInstanceOf[TableSqlFunction]) {
+      return null
+    }
+    val tableFunction = rexCall.getOperator.asInstanceOf[TableSqlFunction]
+    if (!tableFunction.getTableFunction.isInstanceOf[TableVersionFunction]) {
+      return null;
+    }
+    extractVersionExpression(
+      tableFunction.getTableFunction.asInstanceOf[TableVersionFunction],
+      rexCall.getOperands())
+  }
+
+  def extractVersionExpression(
+      tableVersionFunction: TableVersionFunction,
+      operands: util.List[RexNode]): TableVersionFunctionCall = {
+    if (!operands.size().equals(1)) {
+      throw new ValidationException("Table Version Function call must have 
exactly one argument")
+    }
+    val versionExpressionExtractor =
+      new VersionExpressionExtractor(tableVersionFunction, rexBuilder, 
leftSide)
+    val versionExpression: RexNode = 
operands.get(0).accept(versionExpressionExtractor)
+
+    new TableVersionFunctionCall(tableVersionFunction, versionExpression)
+  }
+}
+
+/**
 
 Review comment:
   I'm wondering if we need this extractor. In the end we just need to check if 
the first operand is a time indicator and get its name, right? Why do we allow 
CAST operations?

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to