Skip to content
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

api/v1/sql Aggregate Functions return String #359

Open
metacortex opened this issue Mar 13, 2017 · 1 comment
Open

api/v1/sql Aggregate Functions return String #359

metacortex opened this issue Mar 13, 2017 · 1 comment

Comments

@metacortex
Copy link

metacortex commented Mar 13, 2017

I think JSON number type would be better.

SELECT COUNT(1) FROM sensors;
[{"type" => "table", "columns" => ["COUNT(1)"], "rows" => [["1"]]}]

SELECT SUM(1) FROM sensors;
[{"type" => "table", "columns" => ["SUM(1)"], "rows" => [["1.000000"]]}]

EventQL is really impressive.
Great!

@metacortex
Copy link
Author

When the result of COUNT query is empty, it returns 'null' instead of '0'

[{"type" => "table", "columns" => ["COUNT(1)"], "rows" => []}]

should be

[{"type" => "table", "columns" => ["COUNT(1)"], "rows" => [["0"]] }]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant