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
The check against present on this line:
present
caesar/app/models/exporters/csv_exporter.rb
Line 58 in 4c0ca58
false
This means that reducers which return boolean valued data e.g.
{"result": false}
Will produce an empty column in the resultant data export for all reductions that return false.
The expected result is that a literal false value should be output.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The check against
present
on this line:caesar/app/models/exporters/csv_exporter.rb
Line 58 in 4c0ca58
returns
false
forfalse
valued boolean data.This means that reducers which return boolean valued data e.g.
Will produce an empty column in the resultant data export for all reductions that return
false
.The expected result is that a literal
false
value should be output.The text was updated successfully, but these errors were encountered: