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 cb5512791581108f4e1aec8269c92b2fd0f4fe83
Author: Zhen Chen <[email protected]>
AuthorDate: Sat Sep 6 19:58:47 2025 +0800

    Revert "Capitalize parameterType"
    
    This reverts commit adf9cb4061cd658a13350166a27dfda4f7c0e058.
---
 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 04c77a4585..84dead65a2 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
@@ -43,7 +43,7 @@ public FunctionSqlType(
     super(SqlTypeName.FUNCTION, true, null);
     this.parameterType = requireNonNull(parameterType, "parameterType");
     if (!parameterType.isStruct()) {
-      throw new IllegalArgumentException("ParameterType must be a struct");
+      throw new IllegalArgumentException("parameterType must be a struct");
     }
     this.returnType = requireNonNull(returnType, "returnType");
     computeDigest();

Reply via email to