-
Notifications
You must be signed in to change notification settings - Fork 3.8k
New issue
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
ui: allow stmts page search across logical plan text #71615
Labels
A-webui
Triage label for DB Console (fka admin UI) issues. Add this if nothing else is clear.
C-enhancement
Solution expected to add code/behavior + preserve backward-compat (pg compat issues are exception)
Comments
dbist
added
C-enhancement
Solution expected to add code/behavior + preserve backward-compat (pg compat issues are exception)
A-webui
Triage label for DB Console (fka admin UI) issues. Add this if nothing else is clear.
labels
Oct 15, 2021
CC: @kevin-v-ngo |
PR: #74820. We might not want to implement this change for the txns page as the list of stmts for a txn could potentially grow really large. |
kevin-v-ngo
changed the title
ui: allow stmts/txns page search across logical plan text
ui: allow stmts page search across logical plan text
Jan 13, 2022
gtr
pushed a commit
that referenced
this issue
Jan 18, 2022
Partially addresses #71615. Previously, the search functionality for the stmts page only allowed a search through the statement query. This change adds the statement's Plan as part of that search. Release note (ui change): logical plan text included in searchable text for stmts page.
gtr
pushed a commit
to gtr/cockroach
that referenced
this issue
Jan 18, 2022
Closes: cockroachdb#71615. Previously, the search functionality for the stmts page only allowed a search through the statement query. This change adds the statement's Plan as part of that search. Release note (ui change): logical plan text included in searchable text for stmts page.
gtr
pushed a commit
that referenced
this issue
Jan 18, 2022
Closes #71615. Previously, the search functionality for the stmts page only allowed a search through the statement query. This change adds the statement's Plan as part of that search. Release note (ui change): logical plan text included in searchable text for stmts page.
gtr
pushed a commit
to gtr/cockroach
that referenced
this issue
Jan 18, 2022
Closes cockroachdb#71615. Previously, the search functionality for the stmts page only allowed a search through the statement query. This change adds the statement's Plan as part of that search. Release note (ui change): logical plan text included in searchable text for stmts page.
gtr
pushed a commit
to gtr/cockroach
that referenced
this issue
Jan 20, 2022
Closes cockroachdb#71615. Previously, the search functionality for the stmts page only allowed a search through the statement query. This change adds the statement's Plan as part of that search. Release note (ui change): logical plan text included in searchable text for stmts page.
gtr
pushed a commit
to gtr/cockroach
that referenced
this issue
Jan 21, 2022
Closes cockroachdb#71615. Previously, the search functionality for the stmts page only allowed a search through the statement query. This change adds the statement's Plan as part of that search. Release note (ui change): logical plan text included in searchable text for stmts page.
gtr
pushed a commit
to gtr/cockroach
that referenced
this issue
Jan 24, 2022
Closes cockroachdb#71615. Previously, the search functionality for the stmts page only allowed a search through the statement query. This change adds the statement's Plan as part of that search. Release note (ui change): logical plan text included in searchable text for stmts page.
craig bot
pushed a commit
that referenced
this issue
Jan 25, 2022
75097: ui: allow stmts page to search across explain plan page r=gtr a=gtr Closes #71615. Previously, the search functionality for the stmts page only allowed a search through the statement query. This change adds the statement's Plan as part of that search. Release note (ui change): logical plan text included in searchable text for stmts page. Demo video: shows that the search feature works for statements' plan https://user-images.githubusercontent.com/35943354/150594026-ba6325b1-90f1-4830-9b88-c021d4781596.mov 75490: ui: switch order of tabs on SQL Activity r=maryliag a=maryliag Previously, the tabs under SQL Activity where Sessions, Transactions and Statements. This commit changes the order to be Statements, Transactions and Sessions. Fixes #74644 Release note (ui change): Change the order of tabs under SQL Activity page to be Statements, Transactions and Sessions. Co-authored-by: Gerardo Torres <[email protected]> Co-authored-by: Marylia Gutierrez <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A-webui
Triage label for DB Console (fka admin UI) issues. Add this if nothing else is clear.
C-enhancement
Solution expected to add code/behavior + preserve backward-compat (pg compat issues are exception)
Is your feature request related to a problem? Please describe.
I'd like to identify queries using a specific index, today the search is going against stmt text only, and unless stmt uses an index hint, my search query is not possible.
Describe the solution you'd like
index the logical plan text so that search by index name is possible.
Describe alternatives you've considered
no solution today
The text was updated successfully, but these errors were encountered: