Skip to content

Commit

Permalink
UUID field type mapping - PostgreSQLPlatform (#2284)
Browse files Browse the repository at this point in the history
Signed-off-by: Radek Felcman <[email protected]>
  • Loading branch information
rfelcman authored Dec 4, 2024
1 parent d7114a0 commit 28ffe73
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,8 @@ protected Hashtable<Class<?>, FieldTypeDefinition> buildFieldTypes() {
fieldTypeMapping.put(java.time.OffsetDateTime.class, new FieldTypeDefinition("TIMESTAMP", false));
fieldTypeMapping.put(java.time.OffsetTime.class, new FieldTypeDefinition("TIME", false));

fieldTypeMapping.put(java.util.UUID.class, new FieldTypeDefinition("UUID", false));

return fieldTypeMapping;
}

Expand Down

3 comments on commit 28ffe73

@martin-petzold
Copy link

@martin-petzold martin-petzold commented on 28ffe73 Dec 11, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@rfelcman Could you please include this commit in the 4.0 branch. There is no nightly build to test this. And this is a very important feature! Or do you have some build around?

@rfelcman
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See #2325

@rfelcman
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.