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 adf9cb4061cd658a13350166a27dfda4f7c0e058 Author: Michal Stutzmann <[email protected]> AuthorDate: Tue Aug 26 15:39:47 2025 +0200 Capitalize parameterType --- 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 84dead65a2..04c77a4585 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();
