-
-
Notifications
You must be signed in to change notification settings - Fork 204
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
MergeWithPrevious change #240
MergeWithPrevious change #240
Conversation
…Decrement, AddUnique, AddRelation, RemoveRelation can be merged between the same operation and some other operation. Implementation method reference iOS SDK. I do this by Implementing a tool class in "parse_merge.dart" and calling the "mergeWithPrevious" Method in the set method which implemented in parse_base.dart.
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.
Looks great so far! Is it all tried and tested?
Great work! Will merge once checks have finished |
Yes, I have tested what I changed, and have removed the commented.
Thanks
…------------------ Original ------------------
From: "Phill Wiggins"<notifications@github.com>;
Date: Wed, Aug 7, 2019 03:54 PM
To: "phillwiggins/flutter_parse_sdk"<flutter_parse_sdk@noreply.github.com>;
Cc: "WangPerryWPY"<wangpy6@mail2.sysu.edu.cn>; "Author"<author@noreply.github.com>;
Subject: Re: [phillwiggins/flutter_parse_sdk] MergeWithPrevious change (#240)
@phillwiggins commented on this pull request.
Looks great so far! Is it all tried and tested?
In lib/src/objects/parse_base.dart:
@@ -191,13 +191,18 @@ abstract class ParseBase { if (_getObjectData()[key] == value) { return; } - if (forceUpdate) { - _getObjectData()[key] = value; - } + /*if (!forceUpdate) {
Please can you remove this commented out code.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or mute the thread.
|
@WangPerryWPY |
Before my change, if I setAdd('Test', 1); then setAdd('Test', 2); the first operation will be covered by the last. But after my Change, these operations will become setAdd('Test', [1, 2]); just like all the other parse SDK documents. And setRemove, Increment, setAddUnique is the same like this.
…------------------ Original ------------------
From: "Rodrigo de Souza Marques";
Date: 2019年8月7日(星期三) 晚上6:24
To: "phillwiggins/flutter_parse_sdk";
Cc: "WangPerryWPY"; "Mention";
Subject: Re: [phillwiggins/flutter_parse_sdk] MergeWithPrevious change (#240)
@WangPerryWPY
I did not understand the change.
These methods already work this way today.
Can you explain the advantage of this change over the previous implementation?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or mute the thread.
|
Hi the same thing needs to be done with queryBuilder as well, e.g if you say to order online first and then last seen, |
@pastordee |
* The method of setAdd, setRemove, setAddAll, setRemoveAll, Increment, Decrement, AddUnique, AddRelation, RemoveRelation can be merged between the same operation and some other operation. Implementation method reference iOS SDK. I do this by Implementing a tool class in "parse_merge.dart" and calling the "mergeWithPrevious" Method in the set method which implemented in parse_base.dart. * remove the commented out code.
The method of setAdd, setRemove, setAddAll, setRemoveAll, Increment, AddUnique, AddRelation, RemoveRelation can be merged between the same operation and some other operation. Implementation method reference iOS SDK. I do this by Implementing a tool class in "parse_merge.dart" and calling the "mergeWithPrevious" Method in the set method which implemented in parse_base.dart.