Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
made changes for Big Integers front-end readability
  • Loading branch information
mirkan1 committed Apr 17, 2024
commit 7c07bed95386975b5781d9d270e3ca7560b94cb3
4 changes: 4 additions & 0 deletions redash/handlers/query_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,10 @@ def get(self, query_id=None, query_result_id=None, filetype="json"):
query_result = get_object_or_404(
models.QueryResult.get_by_id_and_org, query_result_id, self.current_org
)
for row in query_result.data['rows']:
for key, value in row.items():
if isinstance(value, int):
row[key] = str(value)

if query_id is not None:
query = get_object_or_404(
Expand Down