We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Marshaling a field with type uint64 will trigger an "invalid number" error.
uint64
This seems to come from these lines: https://github.com/influxdata/influxdb1-client/blob/master/models/points.go#L2354-L2356
A solution would be to cast this to int64 similarly to the cases underneath it.
int64
Shell log:
> INSERT convert,hostname=hanaharu wrote_bytes=2363546 1593054632437 > INSERT convert,hostname=hanaharu wrote_bytes=2363546u 1593054632437 ERR: {"error":"unable to parse 'convert,hostname=hanaharu wrote_bytes=2363546u 1593054632437': invalid number"}
InfluxDB v1.8 Data Types for the line protocol reference, which doesn't show unsigned types.
The text was updated successfully, but these errors were encountered:
same issue
Sorry, something went wrong.
No branches or pull requests
Marshaling a field with type
uint64
will trigger an "invalid number" error.This seems to come from these lines: https://github.com/influxdata/influxdb1-client/blob/master/models/points.go#L2354-L2356
A solution would be to cast this to
int64
similarly to the cases underneath it.Additional information
Shell log:
InfluxDB v1.8 Data Types for the line protocol reference, which doesn't show unsigned types.
The text was updated successfully, but these errors were encountered: