-
Notifications
You must be signed in to change notification settings - Fork 891
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
GODRIVER-2323 Support int64 for 'n' field in insert, update, and delete ops. #905
GODRIVER-2323 Support int64 for 'n' field in insert, update, and delete ops. #905
Conversation
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.
Should we add a similar type switch in count.go
to not error on the receiving of an int32
from the server?
There are also some lint failures for now unnecessary conversions to |
@benjirewis Added int32 support to |
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.
Thank you for capturing the rationale in the ticket comments.
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.
LGTM after switching to AsInt64Ok()
. Apologies for the misleading comment about count.go
.
e2cbbb2
to
a1702ee
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.
LGTM!
GODRIVER-2323
Add support for int32 and int64 types in the
"n"
and"nModified"
fields in various server CRUD responses.