This is an automated email from the ASF dual-hosted git repository. zhenchen pushed a commit to branch revert-4501-calcite-7141 in repository https://gitbox.apache.org/repos/asf/calcite.git
commit 20a775d73561bb16161e2bbc3c4112aa499970db Author: Zhen Chen <[email protected]> AuthorDate: Sat Sep 6 19:58:47 2025 +0800 Revert "Add missing getter" This reverts commit 7259b60542e9825a6c9ec977faef897edf37e28f. --- core/src/main/java/org/apache/calcite/sql/type/FunctionSqlType.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/core/src/main/java/org/apache/calcite/sql/type/FunctionSqlType.java b/core/src/main/java/org/apache/calcite/sql/type/FunctionSqlType.java index b934fdb4b4..277a8ffca4 100644 --- a/core/src/main/java/org/apache/calcite/sql/type/FunctionSqlType.java +++ b/core/src/main/java/org/apache/calcite/sql/type/FunctionSqlType.java @@ -58,10 +58,6 @@ public FunctionSqlType( return this; } - public RelDataType getParameterType() { - return parameterTypeType; - } - public RelDataType getReturnType() { return returnType; }
