We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fe4eac commit 8f7e04bCopy full SHA for 8f7e04b
hibernate-envers/src/main/java/org/hibernate/envers/internal/entities/RevisionTimestampData.java
@@ -30,7 +30,8 @@ public String getTypeName() {
30
public boolean isTimestampDate() {
31
return "date".equals( typeName )
32
|| "time".equals( typeName )
33
- || "timestamp".equals( typeName );
+ || "timestamp".equals( typeName )
34
+ || typeName.contains( "java.util.Date" );
35
}
36
37
public boolean isTimestampLocalDateTime() {
0 commit comments