-
Notifications
You must be signed in to change notification settings - Fork 642
datastore: concat transactional mutations #1341
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
Conversation
lib/datastore/transaction.js
Outdated
| }, {}); | ||
|
|
||
| var reqOpts = { | ||
| mutations: this.requests_.reduce(function(acc, req) { |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
|
Any reason why we can't add a e2e test for this? |
| // IDs to incomplete keys. | ||
| .sort(function(a, b) { | ||
| return a.method > b.method ? 1 : a.method < b.method ? -1 : 0; | ||
| return a.method < b.method ? 1 : a.method > b.method ? -1 : 0; |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
In place of this, I just fixed the system test. It previously was deleting something that never existed, which was giving false positives. Now, we create that entity before deleting it. |
|
Changes Unknown when pulling 77cbb3a on stephenplusplus:spp--1339 into * on GoogleCloudPlatform:master*. |
* Add descriptions for some query parameters * Eliminate the extra space * Add a description to all the alias parameters * Add documentation for property parameters * Add descriptions for the aggregation argument * Add property params to these objects * Add descriptions for data types * Fix the broken links * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Kevin Kim <[email protected]>
Fixes #1339