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
More of a nit than a critical bug. Take an example annotation such as:
#datatype measurement, double, double, double measurement,x,y,z demo,-0.514,0.070,1.672
executing influx write ... will return "unsupported data type ' double'"
influx write ...
This can be remediated by simply removing the whitespace from the annotation row: #datatype measurement,double,double,double
#datatype measurement,double,double,double
I wonder if there's a quick fix in normalizeNumberString
The text was updated successfully, but these errors were encountered:
No branches or pull requests
More of a nit than a critical bug. Take an example annotation such as:
executing
influx write ...
will return "unsupported data type ' double'"This can be remediated by simply removing the whitespace from the annotation row:
#datatype measurement,double,double,double
I wonder if there's a quick fix in normalizeNumberString
The text was updated successfully, but these errors were encountered: