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() + "]" ); }