-
Notifications
You must be signed in to change notification settings - Fork 7
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
Add CodecXXX capable of updating map, list, set types in statement instead of replacing it #263
Conversation
instead of replacing it
Pull Request Test Coverage Report for Build 10741738528Details
💛 - Coveralls |
scassandra/src/main/scala/com/evolutiongaming/scassandra/syntax.scala
Outdated
Show resolved
Hide resolved
I will reconsider having decoding part in new
because its almost same as in existing |
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
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
Motivation
Using currently available
EncodeXXX
one cannot add/update one value in fields of typeMap
,List
orSet
, only option is override the field.CodecXXX
provides access to the field value while encoding thus makes possible updating fiend based on its current value.