This is an automated email from the ASF dual-hosted git repository. zhenchen pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/calcite.git
commit 7259b60542e9825a6c9ec977faef897edf37e28f Author: Michal Stutzmann <[email protected]> AuthorDate: Wed Aug 20 14:21:26 2025 +0200 Add missing getter --- core/src/main/java/org/apache/calcite/sql/type/FunctionSqlType.java | 4 ++++ 1 file changed, 4 insertions(+) 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 277a8ffca4..b934fdb4b4 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,6 +58,10 @@ public FunctionSqlType( return this; } + public RelDataType getParameterType() { + return parameterTypeType; + } + public RelDataType getReturnType() { return returnType; }
