Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 3 additions & 0 deletions .github/config/labeler-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,6 @@ docs:
release-notes:
- docs/src/main/sphinx/release/**
- docs/src/main/sphinx/release.rst

ui:
- core/trino-main/src/main/resources/webapp/**
2 changes: 1 addition & 1 deletion core/trino-main/src/main/resources/webapp/dist/query.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -1502,11 +1502,11 @@ export class QueryDetail extends React.Component {
Cumulative User Memory
</td>
<td className="info-text">
{formatDataSizeBytes(query.queryStats.cumulativeUserMemory / 1000.0) + " seconds"}
{formatDataSize(query.queryStats.cumulativeUserMemory / 1000.0) + "*seconds"}
</td>
{taskRetriesEnabled &&
<td className="info-failed">
{formatDataSizeBytes(query.queryStats.failedCumulativeUserMemory / 1000.0) + " seconds"}
{formatDataSize(query.queryStats.failedCumulativeUserMemory / 1000.0) + "*seconds"}
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

MB*s ? (MBs would be correct, but not clear)

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I started with MBs but yeah, I think it is not clear.
Elsewhere we use full seconds (not an abbreviation), so I guess this is fine.

</td>
}
</tr>
Expand Down