mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-10 13:14:50 +00:00
fix broken signature string of timestampdiff()
This commit is contained in:
parent
6ede95feb7
commit
94c36922ac
@ -167,7 +167,8 @@ public BasicValuedMapping resolveFunctionReturnType(
|
||||
|
||||
@Override
|
||||
public String getReturnType() {
|
||||
return longType + "|" + doubleType;
|
||||
return longType.getJavaType().getSimpleName()
|
||||
+ "|" + doubleType.getJavaType().getSimpleName();
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user