-
Notifications
You must be signed in to change notification settings - Fork 374
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
feat(spanner): tests and samples for DML RETURNING #10233
Conversation
Add tests and samples for GOOGLE_STANDARD_SQL "THEN RETURN" and POSTGRESQL "RETURNING". Note that `Client::ExecuteQuery()` can now execute a DML statement with a returning clause. Previously we added support for `RowStream::RowsModified()` (googleapis#10102), which is now used here.
Google Cloud Build Logs
ℹ️ NOTE: Kokoro logs are linked from "Details" below. |
Codecov ReportBase: 93.97% // Head: 93.84% // Decreases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## main #10233 +/- ##
==========================================
- Coverage 93.97% 93.84% -0.13%
==========================================
Files 1540 1540
Lines 141901 142098 +197
==========================================
+ Hits 133345 133353 +8
- Misses 8556 8745 +189
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
Google Cloud Build Logs
ℹ️ NOTE: Kokoro logs are linked from "Details" below. |
Here is the summary of changes. You are about to add 6 region tags.
This comment is generated by snippet-bot.
|
Add tests and samples for GOOGLE_STANDARD_SQL "THEN RETURN" and POSTGRESQL "RETURNING".
Note that
Client::ExecuteQuery()
can now execute a DML statement with a returning clause.Previously we added support for
RowStream::RowsModified()
(#10102), which is now used here.This change is