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
group by
Hi,
I think group by should group null/empty values.
How to reproduce:
experiment
{"time":1399475640,"country":"RU","users":1} {"time":1399475641,"country":null,"users":1} {"time":1399475642,"country":null,"users":1}
select * from experiment
you should see 3 rows with added points.
select country, sum(users) from experiment group by time(1m), country
Now you see:
by I expect to see:
The text was updated successfully, but these errors were encountered:
Good call. This is definitely a bug. Moving to 0.6.2
Sorry, something went wrong.
15d7228
fix #512. Group by should respect null values
42a8c7c
No branches or pull requests
Hi,
I think
group by
should group null/empty values.How to reproduce:
experiment
series:you should see 3 rows with added points.
Now you see:
by I expect to see:
The text was updated successfully, but these errors were encountered: