lihaosky commented on code in PR #26553:
URL: https://github.com/apache/flink/pull/26553#discussion_r2096294016


##########
flink-table/flink-table-planner/src/main/java/org/apache/flink/table/planner/functions/sql/ml/SqlMlTableFunction.java:
##########
@@ -0,0 +1,89 @@
+/*
+ * 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.planner.functions.sql.ml;
+
+import org.apache.calcite.rel.type.RelDataType;
+import org.apache.calcite.sql.SqlCall;
+import org.apache.calcite.sql.SqlFunction;
+import org.apache.calcite.sql.SqlFunctionCategory;
+import org.apache.calcite.sql.SqlKind;
+import org.apache.calcite.sql.SqlNode;
+import org.apache.calcite.sql.SqlOperatorBinding;
+import org.apache.calcite.sql.SqlTableFunction;
+import org.apache.calcite.sql.type.ReturnTypes;
+import org.apache.calcite.sql.type.SqlOperandMetadata;
+import org.apache.calcite.sql.type.SqlReturnTypeInference;
+import org.apache.calcite.sql.validate.SqlValidator;
+import org.apache.calcite.sql.validate.SqlValidatorScope;
+
+import java.util.List;
+
+/**
+ * Base class for a table-valued function that works with models. Examples 
include {@code
+ * ML_PREDICT}.
+ */
+public abstract class SqlMlTableFunction extends SqlFunction implements 
SqlTableFunction {
+
+    protected static final String PARAM_DATA = "data";

Review Comment:
   I thought the names are not fixed when I wrote FLIP 437, just realized it's 
fixed when implementing this... I copied the names mostly from 
https://github.com/apache/calcite/blob/main/core/src/main/java/org/apache/calcite/sql/SqlWindowTableFunction.java#L51-L54.
 
   
   * `input` for `eval_data` is fine. 
   * I have some problem with `model` as name in parser, maybe because it's a 
keyword. So I changed it to `input_model`. Not sure if there's a workaround.
   * I feel `input_column` is more accurate than `args`. Maybe call it 
`INPUTCOL` as `TIMECOL` in 
https://github.com/apache/calcite/blob/main/core/src/main/java/org/apache/calcite/sql/SqlWindowTableFunction.java#L54?
 `args` isn't very descriptive and too generic.
   
   wdyt?
   
   
   
   
   



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to