HHH-17975: use the same precision (millis) for resolving revision timestamps from Instant as from LocalDateTime
This commit is contained in:
parent
034b42f3a1
commit
ac49021e28
|
@ -100,7 +100,7 @@ public class RevisionTimestampValueResolver {
|
|||
return instant;
|
||||
}
|
||||
else {
|
||||
return instant.getEpochSecond();
|
||||
return instant.toEpochMilli();
|
||||
}
|
||||
}
|
||||
return null;
|
||||
|
|
Loading…
Reference in New Issue