fix broken signature string of timestampdiff()

This commit is contained in:
Gavin King 2024-01-15 21:21:28 +01:00
parent 6ede95feb7
commit 94c36922ac
1 changed files with 2 additions and 1 deletions

View File

@ -167,7 +167,8 @@ public class TimestampdiffFunction
@Override @Override
public String getReturnType() { public String getReturnType() {
return longType + "|" + doubleType; return longType.getJavaType().getSimpleName()
+ "|" + doubleType.getJavaType().getSimpleName();
} }
} }