-
Notifications
You must be signed in to change notification settings - Fork 585
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
Upgrading to v12 causes duplicate to be created instead of updated when updating nested object #6517
Comments
➤ PM Bot commented: Jira ticket: RJS-2744 |
@mattlewer Thank you for reporting. Is it possible for you to share the schema? |
Hopefully this helps Config
Session
User
Organisation
Syncable
SyncResource
idGenerator
|
It sounds like the same as #6129 and we released a fix for it in v12.2.0. |
Has this potentially regressed since as I'm using v12.6.0? Will downgrade to v12.2.0 to see if it makes a difference and get back to you |
Thanks! |
Same error: Original update function: Adapted update function: |
So the first error is expected: realm.write(() => {
session.user = updatedUser;
}); where The second code snippet points to a legitimate bug though, however I've been unable to reproduce it. I've attached my attempt to repro this - if you can modify it in a way that triggers the duplicate PK error, let us know and we'll continue investigating. |
Thank you for getting back to me, I will have a look ASAP. Given the above situation, what would be the correct way to update this nested object? I would assume that because it comes down with the same primary key as the object currently stored in the DB, it would successfully match these up and update it, I don't quite understand why it would cause an error? Also as this worked fine in v11, is there something specific that has caused this breaking change? If I downgrade again, everything works as intended. |
Did
work with v11? If it did, it's definitely unintended and likely a bug with v11. The other code snippet - i.e.:
Should work in both v11 and v12 and is the right way to do it. If it doesn't work with v12, then we should definitely fix it, but I can't repro it so far. |
Yep, both worked fine with v11, will try and reproduce with a test when I have a moment and get back to you |
This issue has been automatically closed because there has been no response to our request for more information from the original author. With only the information that is currently in the issue, we don't have enough information to take action. Please reach out if you have or find the answers we need so that we can investigate further. |
Any chance you have a moment to create a reproduction case for us? |
This issue has been automatically closed because there has been no response to our request for more information from the original author. With only the information that is currently in the issue, we don't have enough information to take action. Please reach out if you have or find the answers we need so that we can investigate further. |
How frequently does the bug occur?
Always
Description
Similar issues:
#6322
#6239
We have been using Realm v11.10.1 without issues, since upgrading to v12.6.0, we are encountering errors updating nested objects.
We receive an updated version of an object from our server in JSON format.
We want to update the Realm object in the devices local database so that the changes are reflected.
The object we have looks like this, with each name being its own Realm table:
We update the object in Realm like so:
and call this function as such:
We receive this error:
Attempting to create an object of type 'User' with an existing primary key value '341'
In an attempt to fix this, we have adapted the update function to be the following, this also works on v11.10.1 without issue:
Which is then called as such:
This also fails, however giving an error a layer deeper:
Error: Attempting to create an object of type 'Organisation' with an existing primary key value '454'
Stacktrace & log output
No response
Can you reproduce the bug?
Always
Reproduction Steps
Have an object stored in Realm
Attempt to update this objects nested fields, using an interfaced JSON object, containing the primary key
Receive error
Version
12.6.0
What services are you using?
Local Database only
Are you using encryption?
No
Platform OS and version(s)
Android & iOS
Build environment
Which debugger for React Native: ..
Cocoapods version
No response
The text was updated successfully, but these errors were encountered: