This is an automated email from the ASF dual-hosted git repository.
mbudiu pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/calcite.git
The following commit(s) were added to refs/heads/main by this push:
new dad9d75fd0 [MINOR] Checkstyle to fix broken build
dad9d75fd0 is described below
commit dad9d75fd01a7beed4618dfa481f8f5be8e80dc6
Author: Mihai Budiu <[email protected]>
AuthorDate: Wed Dec 27 11:07:25 2023 -0800
[MINOR] Checkstyle to fix broken build
Signed-off-by: Mihai Budiu <[email protected]>
---
.../apache/calcite/sql/validate/implicit/AbstractTypeCoercion.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/core/src/main/java/org/apache/calcite/sql/validate/implicit/AbstractTypeCoercion.java
b/core/src/main/java/org/apache/calcite/sql/validate/implicit/AbstractTypeCoercion.java
index 99465934b2..7b6e7c5554 100644
---
a/core/src/main/java/org/apache/calcite/sql/validate/implicit/AbstractTypeCoercion.java
+++
b/core/src/main/java/org/apache/calcite/sql/validate/implicit/AbstractTypeCoercion.java
@@ -478,8 +478,8 @@ public abstract class AbstractTypeCoercion implements
TypeCoercion {
}
if (null != resultType) {
- resultType = factory.createTypeWithNullability(resultType,
- type1.isNullable() || type2.isNullable());
+ resultType =
+ factory.createTypeWithNullability(resultType, type1.isNullable() ||
type2.isNullable());
}
return resultType;