-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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 Realm Core 0.97.0 #2397
Conversation
Not sure if https://github.com/realm/realm-object-store/pull/52/files#r55271290 this change has impact on us as well. in |
@beeender The error in the failing test seems to indicate it :-) |
Should this PR also modify our |
@cmelchior We can remove the aux. files from the list but then removing old database will leave these files untouched. Adding a note to the change log that you must manually remove aux. files is an option. |
I guess leaving it in for now isn't a big issue. |
@@ -169,10 +169,12 @@ public static boolean compact(RealmConfiguration configuration) { | |||
try { | |||
sharedGroup = new SharedGroup( | |||
configuration.getPath(), | |||
SharedGroup.EXPLICIT_TRANSACTION, | |||
SharedGroup.IMPLICIT_TRANSACTION, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We get a LogicError
exception when you try to open the Realm with explicit transaction if it is already opened with implicit transaction. I haven't talked with the core team so I don't know if they are aware of it.
LGTM besides small comments |
The |
I think that |
👍 |
2 similar comments
👍 |
👍 |
👍 |
@realm/java