-
Notifications
You must be signed in to change notification settings - Fork 356
Nested @MappedCollection is not loaded correctly with UUID primary key #1780
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
This sounds similar to #1684. Can you run your test against the most recent snapshot build? |
If you would like us to look at this issue, please provide the requested information. If the information is not provided within the next 7 days this issue will be closed. |
Closing due to lack of requested feedback. If you would like us to look at this issue, please provide the requested information and we will re-open the issue. |
This problem is found in spring-data-jdbc version 3.2 It is still present in version 3.2.5.
Code example:
data class Foo(
@id
val id: UUID = UUID.randomUUID(),
@MappedCollection(idColumn = "foo_id")
val bar: Bar, // If this is changes to Set the test run OK.
)
In our project all db keys are uuid. If I change all primary keys in this example with Long the test run OK. If I downgrade to version 3.1.11 the test runs OK.
The text was updated successfully, but these errors were encountered: