Skip to content
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

Added ReadInt32 for decoder #66

Closed
wants to merge 1 commit into from
Closed

Conversation

yzprofile
Copy link
Contributor

No description provided.

@@ -144,6 +144,11 @@ func (d *Decoder) Decode(v interface{}) (err error) {
n, err = d.ReadInt16()
rv.SetInt(int64(n))
return
case *int32:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Going to merge, it's all good. Just curious, where it failing to decode a int32?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

in parsing table content.


buf := new(bytes.Buffer)
enc := NewEncoder(buf)
enc.writeInt32(int32(342))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In fact, can you add a negative test like in Line #116 so we cover both positive and negative numbers.

Once it's changed, I'm going to merge your work.

@maoueh
Copy link
Contributor

maoueh commented Nov 28, 2018

I've made the change and merged into master (690d9cf). Closing.

@maoueh maoueh closed this Nov 28, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants