-
Notifications
You must be signed in to change notification settings - Fork 373
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): support instance edition #14678
feat(spanner): support instance edition #14678
Conversation
@@ -117,13 +117,59 @@ class CreateInstanceRequestBuilder { | |||
return std::move(*this); | |||
} | |||
|
|||
enum class Edition { kStandard = 0, kEnterprise, kEnterprisePlus }; |
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.
documentation?
Also, nit: drop the = 0
?
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 3 files reviewed, 1 unresolved discussion (waiting on @dbolduc)
google/cloud/spanner/create_instance_request_builder.h
line 120 at r1 (raw file):
Previously, dbolduc (Darren Bolduc) wrote…
documentation?
Also, nit: drop the
= 0
?
Done.
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #14678 +/- ##
==========================================
- Coverage 93.62% 93.62% -0.01%
==========================================
Files 2320 2320
Lines 207152 207188 +36
==========================================
+ Hits 193947 193978 +31
- Misses 13205 13210 +5 ☔ View full report in Codecov by Sentry. |
d31f355
to
15fb48e
Compare
This change is