Skip to content
This repository has been archived by the owner on Dec 14, 2020. It is now read-only.

Implement decimal and char types #79

Open
vcabbage opened this issue Apr 11, 2018 · 0 comments
Open

Implement decimal and char types #79

vcabbage opened this issue Apr 11, 2018 · 0 comments
Labels

Comments

@vcabbage
Copy link
Owner

Go has no builtin decimal types, would need to determine a reasonable way to represent these without pulling in a 3rd party lib.

Char is UTF-32BE encoded. Ideally this would be converted into a rune.

amqp/decode.go

Lines 658 to 666 in ee6eb7e

// TODO: implement
case typeCodeDecimal32:
return nil, errorNew("decimal32 not implemented")
case typeCodeDecimal64:
return nil, errorNew("decimal64 not implemented")
case typeCodeDecimal128:
return nil, errorNew("decimal128 not implemented")
case typeCodeChar:
return nil, errorNew("char not implemented")

@vcabbage vcabbage added the bug label Apr 11, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

1 participant