-
Notifications
You must be signed in to change notification settings - Fork 59
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
Fix marshal tinyint #265
Fix marshal tinyint #265
Conversation
790db0f
to
d8d240b
Compare
CI keeps failing |
ced833c
to
f43a435
Compare
3fd0269
to
d1ab786
Compare
Please clean up the commits |
d1ab786
to
fbe2773
Compare
Done |
@illia-li I would like to have the information about what exactly was fixed in the commit message, it will be helpful for future readers to have clearly stated what was wrong before and what this commit changes to make it bette |
fbe2773
to
26ca21d
Compare
Done |
26ca21d
to
4c0dc70
Compare
Something wrong with build environment. |
4c0dc70
to
e18a6a9
Compare
e18a6a9
to
1f3617c
Compare
Please, lets not change the |
5d4aae8
to
1df269c
Compare
dc88bd1
to
0e44c4f
Compare
@sylwiaszunejko , can you please take another look at it. |
a23cde3
to
e0c0da5
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
@illia-li , could you please rebase |
e0c0da5
to
1d0b7bd
Compare
1d0b7bd
to
89a03ac
Compare
Done |
Fixed for
tinyint
type:string
marshal and unmarshal asnullable
.1.1. Was: marshals
""
- caused an error; unmarshalsnil data
into"0"
.1.2. Now: marshals and unmarshals
nil data
-""
.custom string
marshals and unmarshals wasnot supported
, nowsupported
.big.Int
marshals wasnot supported
, nowsupported
.corrupt test suite
.Close issues for
tinyint
:cql types
unmarshaling data that have bigger len thancql type
, do not return an error. #246cql types
ago string
is supported, but not ago custom string
#243cql types
:tinyint
,smallint
,int
can not be marshaled intogo big.Int
#244zero
andnull
data and values. #250