-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
The value of last column is always null. #772
Comments
Unfortunately I can't reproduce this issue locally. Is it possible to reproduce the issue on a fresh installation or share your data with us. |
I just removed the package, nuked /opt/influxdb and installed the package again. Still getting the same issue. Below is a link the entire /opt/influxdb directory. I hope that's ok. |
Do you have a script that I can run locally ? |
#!/bin/sh
DATA='[
{
"columns": [
"column1",
"column2"
],
"name": "events",
"points": [
[
"value1",
"value2"
]
]
}
]'
curl -d "$DATA" "http://127.0.0.1:8086/db/test/series?u=root&p=root"
QUERY="select%20*%20from%20events%3B"
curl "http://127.0.0.1:8086/db/test/series?u=root&p=root&q=$QUERY&pretty=true" The output I'm getting:
|
Great I can reproduce it locally using the script |
Hi,
I'm testing InfluxDB 0.8.0-rc.2 (installed using the provided deb package). I'm using the default config provided in the deb. I have run into the following issue:
I'm creating a single point in an empty series:
After performing a
select * from events;
query I get the following result:After adding another point with a third column, I get the following result for the same query:
It seems that the values for the last column are always null. Is this a know issue? This was working fine in 0.7.
The text was updated successfully, but these errors were encountered: