fix(studio): query perf update label formatting and column name (#38778)

* chore: update rows read column label

* fix: toLocaleString for grid numbers
This commit is contained in:
kemal.earth
2025-09-17 16:24:55 +01:00
committed by GitHub
parent fd308c6bad
commit cd07289476
2 changed files with 13 additions and 5 deletions

View File

@@ -20,7 +20,7 @@ export const QUERY_PERFORMANCE_COLUMNS = [
{ id: 'max_time', name: 'Max time', description: undefined, minWidth: 100 },
{ id: 'mean_time', name: 'Mean time', description: undefined, minWidth: 100 },
{ id: 'min_time', name: 'Min time', description: undefined, minWidth: 100 },
{ id: 'rows_read', name: 'Rows read', description: undefined, minWidth: 100 },
{ id: 'rows_read', name: 'Rows processed', description: undefined, minWidth: 130 },
{ id: 'cache_hit_rate', name: 'Cache hit rate', description: undefined, minWidth: 130 },
{ id: 'rolname', name: 'Role', description: undefined, minWidth: 160 },
] as const