Fix typo: incompatibile should be incompatible
This commit is contained in:
parent
61cddad76d
commit
7fdac4eeb5
|
@ -74,7 +74,7 @@ public class BinaryLogicOperatorNode extends AbstractSelectExpression implements
|
||||||
int lhsColumnSpan = getColumnSpan( lhsType, sessionFactory );
|
int lhsColumnSpan = getColumnSpan( lhsType, sessionFactory );
|
||||||
if ( lhsColumnSpan != getColumnSpan( rhsType, sessionFactory ) ) {
|
if ( lhsColumnSpan != getColumnSpan( rhsType, sessionFactory ) ) {
|
||||||
throw new TypeMismatchException(
|
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() + "]"
|
lhsType.getName() + " : " + rhsType.getName() + "]"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue