-
Notifications
You must be signed in to change notification settings - Fork 617
Upgrade count upto to use int64 #4038
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
Coverage Report 1Affected Products
Test Logs
Notes |
Size Report 1Affected Products
Test Logs
Notes |
@@ -313,7 +313,7 @@ message StructuredAggregationQuery { | |||
// Requires: | |||
// | |||
// * Must be greater than zero when present. | |||
int32 up_to = 1; | |||
int64 up_to = 1; |
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 should be google.protobuf.Int64Value
, no? Or is that the same thing?
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.
It really looks like int64
and google.protobuf.Int64Value
are distinct types.
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.
Fixed.
No description provided.