HHH-9869 - fix the order in which SizeExpression.toString() emits size and property so that the toString of a SizeExpression is logically correct
(cherry picked from commit ad704a194e
)
This commit is contained in:
parent
524f7f60c5
commit
6c3e1d3f8d
|
@ -76,7 +76,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