-
Notifications
You must be signed in to change notification settings - Fork 175
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(satellite): Ensure decimal point in real number encoding #508
fix(satellite): Ensure decimal point in real number encoding #508
Conversation
VAX-1078 Client write to a float column fails to validate on the server
Reported in Discord — https://discord.com/channels/933657521581858818/1079688869852753981/1154950112414535753. The problem happens when a whole number is written into a float column, e.g. The server explicitly checks that a float number has a decimal point and at least one place following it, e.g. The client needs to make sure that a floating point number always has a decimal point when encoded for the Satellite protocol. |
e2de116
to
a414388
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 👍
Fixes VAX-1078.
Related: #507