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
X-Influxdb-Version →1.2.2
Steps to reproduce:
/query?q=DROP DATABASE csv_test
/query?q=CREATE DATABASE csv_test
/write?db=csv_test
example a=1,b=2 1465839830100400000 example a=1 1465839830100500000
Expected behavior: I would expect the second point to have a null value for 'b' as it does in the json response:
"values":[["2016-06-13T17:43:50.1004Z",1,2],["2016-06-13T17:43:50.1005Z",1,null]]
Actual behavior: JSON format gives the expected results, but CSV does not
/query?db=csv_test&q=SELECT * FROM example Gives:
/query?db=csv_test&q=SELECT * FROM example
name,tags,time,a,b,c example,,1465839830100400000,1,2 example,,1465839830100500000,1,2
The text was updated successfully, but these errors were encountered:
jsternberg
No branches or pull requests
Bug report
X-Influxdb-Version →1.2.2
Steps to reproduce:
/query?q=DROP DATABASE csv_test
/query?q=CREATE DATABASE csv_test
/write?db=csv_test
Expected behavior:
I would expect the second point to have a null value for 'b' as it does in the json response:
Actual behavior:
JSON format gives the expected results, but CSV does not
/query?db=csv_test&q=SELECT * FROM example
Gives:
The text was updated successfully, but these errors were encountered: