-
Notifications
You must be signed in to change notification settings - Fork 377
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
impl(bigquerycontrol): promote from experimental to transitional #14887
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #14887 +/- ##
=======================================
Coverage 92.91% 92.91%
=======================================
Files 2351 2351
Lines 209692 209692
=======================================
+ Hits 194832 194841 +9
+ Misses 14860 14851 -9 ☔ View full report in Codecov by Sentry. |
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.
This is probably a convenient way to keep defining the experimental-*
target, which quickstart-cmake-pr
needs.
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.
So the edits to the config.cmake.in fixed one issue, but because the quickstart-cmake build uses the current release and not HEAD to install cmake targets, the build could not find experimental-bigquerycontrol
, so I have temporarily excluded it from that build.
Reviewable status: 0 of 13 files reviewed, 1 unresolved discussion (waiting on @dbolduc)
13059dd
to
fa4f7d7
Compare
@@ -20,6 +20,6 @@ cc_binary( | |||
"quickstart.cc", | |||
], | |||
deps = [ | |||
"@google_cloud_cpp//:experimental-bigquerycontrol", |
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.
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 comment
The reason will be displayed to describe this comment to others. Learn more.
Reverted.
@@ -29,4 +29,4 @@ endif () | |||
|
|||
# Define your targets. | |||
add_executable(quickstart quickstart.cc) | |||
target_link_libraries(quickstart google-cloud-cpp::experimental-bigquerycontrol) | |||
target_link_libraries(quickstart google-cloud-cpp::bigquerycontrol) |
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.
same
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.
Reverted.
b06f21f
to
1442db1
Compare
1442db1
to
00b4d4a
Compare
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.
Reviewable status: 0 of 16 files reviewed, 3 unresolved discussions (waiting on @dbolduc)
@@ -20,6 +20,6 @@ cc_binary( | |||
"quickstart.cc", | |||
], | |||
deps = [ | |||
"@google_cloud_cpp//:experimental-bigquerycontrol", |
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.
Reverted.
@@ -29,4 +29,4 @@ endif () | |||
|
|||
# Define your targets. | |||
add_executable(quickstart quickstart.cc) | |||
target_link_libraries(quickstart google-cloud-cpp::experimental-bigquerycontrol) | |||
target_link_libraries(quickstart google-cloud-cpp::bigquerycontrol) |
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.
Reverted.
bigquerycontrol "Cloud BigQuery Control API" EXPERIMENTAL REST_TRANSPORT | ||
SERVICE_DIRS "v2/") | ||
google_cloud_cpp_add_gapic_library(bigquerycontrol "Cloud BigQuery Control API" | ||
REST_TRANSPORT SERVICE_DIRS "v2/") |
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
@@ -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 comment
The 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 comment
The 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.
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.
Reviewable status: 0 of 16 files reviewed, 5 unresolved discussions (waiting on @dbolduc)
@@ -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 comment
The 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.
This change is