-
Notifications
You must be signed in to change notification settings - Fork 378
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
impl(bigquerycontrol): promote from experimental to transitional #14887
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,7 @@ cc_binary( | |
"quickstart.cc", | ||
], | ||
deps = [ | ||
# TODO(#14891): switch to GA target | ||
"@google_cloud_cpp//:experimental-bigquerycontrol", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think we should be changing the quickstart targets just yet There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Reverted. |
||
], | ||
) |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1747,7 +1747,7 @@ void RestoreDatabaseWithEncryptionKeyCommand(std::vector<std::string> argv) { | |
// [START spanner_restore_backup_with_MR_CMEK] | ||
void RestoreDatabaseWithMRCMEK( | ||
google::cloud::spanner_admin::DatabaseAdminClient client, | ||
BackupIdentifier src, std::string const& database_id, | ||
BackupIdentifier const& src, std::string const& database_id, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. odd that we are making a spanner change in this PR, but it looks like a good change There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For reasons unknown, clang-tidy complained about it in this PR, not whichever PR is was introduced in. |
||
std::vector<google::cloud::KmsKeyName> const& encryption_keys) { | ||
google::cloud::spanner::Database database(src.project_id, src.instance_id, | ||
database_id); | ||
|
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 want a
TRANSITION
flag here