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
Update Powerpipe JSON output to align all cases around a single format. Cases:
Proposed format:
{ "columns": [ { "name": "foo", "data_type": "int4" }, { "name": "foo_{random4}", "data_type": "int4", "original_name": "foo" } ], "rows": [ { "foo": 1, "foo_{random4}": 2 } ], "metadata": { ... } }
The text was updated successfully, but these errors were encountered:
Update JSON output to be consistent across pipelings - also handle du…
2a3027d
…plicate column names. Closes #375 * update json output to include columns field and duplicate columns * add name generator * check unique name
Fix unique column name generation for queries returning multiple rows. …
23bbc94
…#375
Fix handling of duplicate column names and unique name generation. Su…
18de42b
…pport new JSON format in dashboard UI. Closes #404. #375
pskrbasu
Successfully merging a pull request may close this issue.
Update Powerpipe JSON output to align all cases around a single format.
Cases:
Proposed format:
The text was updated successfully, but these errors were encountered: