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 90b4f6946dde50f171194048fb1397bf006bf9d4 Author: Michal Stutzmann <[email protected]> AuthorDate: Wed Aug 20 23:26:14 2025 +0200 Fix typo --- core/src/main/java/org/apache/calcite/sql/type/FunctionSqlType.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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..4633c3c88f 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 @@ -59,7 +59,7 @@ public FunctionSqlType( } public RelDataType getParameterType() { - return parameterTypeType; + return parameterType; } public RelDataType getReturnType() {
