HHH-9869 - fix the order in which SizeExpression.toString() emits size and property so that the toString of a SizeExpression is logically correct
This commit is contained in:
parent
dd0547efdc
commit
ad704a194e
|
@ -59,7 +59,7 @@ public class SizeExpression implements Criterion {
|
|||
|
||||
@Override
|
||||
public String toString() {
|
||||
return propertyName + ".size" + op + size;
|
||||
return Integer.toString(size) + op + propertyName + ".size";
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue