From 7fdac4eeb5ea0cdc4bd455d08340f8d012664cff Mon Sep 17 00:00:00 2001 From: Nicolas MAUTI Date: Thu, 3 Jan 2019 18:15:27 +0100 Subject: [PATCH] Fix typo: incompatibile should be incompatible --- .../hql/internal/ast/tree/BinaryLogicOperatorNode.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hibernate-core/src/main/java/org/hibernate/hql/internal/ast/tree/BinaryLogicOperatorNode.java b/hibernate-core/src/main/java/org/hibernate/hql/internal/ast/tree/BinaryLogicOperatorNode.java index e02d065ef9..8e44ae5bf7 100644 --- a/hibernate-core/src/main/java/org/hibernate/hql/internal/ast/tree/BinaryLogicOperatorNode.java +++ b/hibernate-core/src/main/java/org/hibernate/hql/internal/ast/tree/BinaryLogicOperatorNode.java @@ -74,7 +74,7 @@ protected final void mutateRowValueConstructorSyntaxesIfNecessary(Type lhsType, int lhsColumnSpan = getColumnSpan( lhsType, sessionFactory ); if ( lhsColumnSpan != getColumnSpan( rhsType, sessionFactory ) ) { throw new TypeMismatchException( - "left and right hand sides of a binary logic operator were incompatibile [" + + "left and right hand sides of a binary logic operator were incompatible [" + lhsType.getName() + " : " + rhsType.getName() + "]" ); }