-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
92463: server, ui: add used index to statement details r=maryliag a=maryliag This commit convert from table id and index id on the statement details endpoint, and adds the index used information to the Explain Plan tab on Statement Details. The elements of the list are links that redirect to the table or index details page. Fixes #82615 https://www.loom.com/share/530bf4e795d648bb854c18d60b074e4c <img width="1483" alt="Screen Shot 2022-11-24 at 11 11 54 AM" src="https://user-images.githubusercontent.com/1017486/203828306-0a6fb905-cae1-4217-8ea3-b4e323cf3a72.png"> Release note (ui change): Add a list of used index per explain plan, under the Explain Plan tab on Statement Details page, with links to the table or index details pages. Co-authored-by: maryliag <marylia@cockroachlabs.com>
- Loading branch information
Showing
3 changed files
with
150 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
pkg/ui/workspaces/cluster-ui/src/statementDetails/planDetails/plansTable.module.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
@import "src/core/index.module"; | ||
|
||
.bold-link { | ||
font-weight: $font-weight--bold; | ||
|
||
&:hover { | ||
color: $colors--link; | ||
text-decoration: underline; | ||
} | ||
} | ||
|
||
.regular-link:hover { | ||
color: $colors--link; | ||
text-decoration: underline; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters