twalthr commented on a change in pull request #6815:  [FLINK-7062][cep][table] 
Added basic support for MATCH_RECOGNIZE
URL: https://github.com/apache/flink/pull/6815#discussion_r225891330
 
 

 ##########
 File path: 
flink-libraries/flink-table/src/main/scala/org/apache/flink/table/plan/nodes/MatchRecognize.scala
 ##########
 @@ -0,0 +1,151 @@
+/*
+ * 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.nodes
+
+import com.google.common.collect.ImmutableMap
+import org.apache.calcite.rel.{RelCollation, RelWriter}
+import org.apache.calcite.rex.{RexCall, RexLiteral, RexNode}
+import org.apache.calcite.sql.SqlKind
+import org.apache.calcite.sql.SqlMatchRecognize.AfterOption
+import org.apache.flink.cep.nfa.aftermatch.AfterMatchSkipStrategy
+import org.apache.flink.table.plan.nodes.logical.FlinkLogicalMatch
+import org.apache.flink.table.plan.schema.RowSchema
+
+import scala.collection.JavaConverters._
+
+trait MatchRecognize {
+
+  private type JList[T] = java.util.List[T]
+  private type JSortedSet[T] = java.util.SortedSet[T]
+
+  private[flink] def partitionKeysToString(
+    keys: JList[RexNode],
+    schema: RowSchema,
+    expression: (RexNode, List[String], Option[List[RexNode]]) => String
+  ) = keys.asScala.map(k => expression(k, schema.fieldNames.toList, 
None)).mkString(", ")
+
+  private[flink] def orderingToString(orders: RelCollation, schema: RowSchema) 
=
+    orders.getFieldCollations.asScala.map {
+    x => schema.relDataType.getFieldList.get(x.getFieldIndex).getName
+  }.mkString(", ")
+
+  private[flink] def measuresDefineToString(
+      measures: ImmutableMap[String, RexNode],
+      schema: RowSchema,
+      expression: (RexNode, List[String], Option[List[RexNode]]) => String) =
+    measures.asScala.map {
+    case (k, v) => s"${expression(v, schema.fieldNames.toList, None)} AS $k"
+  }.mkString(", ")
+
+  private[flink] def rowsPerMatchToString(isAll: Boolean) =
+    if (isAll) "ALL ROWS PER MATCH" else "ONE ROW PER MATCH"
+
+  private[flink] def subsetToString(subset: ImmutableMap[String, 
JSortedSet[String]]) =
+    subset.asScala.map {
+    case (k, v) => s"$k = (${v.toArray.mkString(", ")})"
+  }.mkString(", ")
+
+  private[flink] def afterMatchToString(
+    after: RexNode,
+    schema: RowSchema,
+    expression: (RexNode, List[String], Option[List[RexNode]]) => String) = 
after.getKind match {
+    case SqlKind.SKIP_TO_FIRST => s"SKIP TO FIRST ${
 
 Review comment:
   Please try to keep a consistent coding style. Even though we don't enforce a 
coding style yet, I usually recommend this guide here: 
https://github.com/databricks/scala-style-guide
   
   ```
   private[flink] def afterMatchToString(
       after: RexNode,
       schema: RowSchema,
       expression: (RexNode, List[String], Option[List[RexNode]]) => String)
     : String = {
     
     after.someCode(...)
   }
   ```
   
   Especially explicit return types for members are useful for code readability.

----------------------------------------------------------------
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:
[email protected]


With regards,
Apache Git Services

Reply via email to