-
Notifications
You must be signed in to change notification settings - Fork 134
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
tweak: add more slow query basic fields #1445
Conversation
[REVIEW NOTIFICATION] This pull request has not been approved. To complete the pull request process, please ask the reviewers in the list to review by filling The full list of commands accepted by this bot can be found here. Reviewer can indicate their review by submitting an approval review. |
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## master #1445 +/- ##
===========================================
+ Coverage 11.19% 29.40% +18.20%
===========================================
Files 156 128 -28
Lines 13115 10530 -2585
Branches 103 103
===========================================
+ Hits 1468 3096 +1628
+ Misses 11525 7254 -4271
- Partials 122 180 +58
Flags with carried forward coverage won't be shown. Click here to find out more. Continue to review full report at Codecov.
|
Merged first for the 12.02 release. |
* tweak: add more slow query basic fields * tweak: i18n
* Upgrade go version to 1.18; fix test in ci pipeline (#1437) * upgrade go version to 1.18 * update github action go-version to 1.18 * try to fix ci * Docker image support and misc. improvements (#1439) * test: support iframe full window / full screen / open in new tab (#1442) * support full window * support full screen * support show in an new tab * tweak: add more slow query basic fields (#1445) * tweak: add more slow query basic fields * tweak: i18n * Update release version * chore: update i18n Co-authored-by: Yifan Xu <xuyifan02@pingcap.com> Co-authored-by: Sparkle <1284531+baurine@users.noreply.github.com>
@@ -21,6 +21,12 @@ slow_query: | |||
is_internal: 是否为内部 SQL 查询 | |||
is_success: 是否执行成功 | |||
is_success_tooltip: SQL 查询是否执行成功 | |||
is_prepared: Is Prepared? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
是否执行准备?
@@ -21,6 +21,12 @@ slow_query: | |||
is_internal: 是否为内部 SQL 查询 | |||
is_success: 是否执行成功 | |||
is_success_tooltip: SQL 查询是否执行成功 | |||
is_prepared: Is Prepared? | |||
is_prepared_tooltip: 是否由 prepare 语句生成 | |||
is_plan_from_cache: Is Plan from Cache? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
是否使用计划缓存?
is_prepared_tooltip: 是否由 prepare 语句生成 | ||
is_plan_from_cache: Is Plan from Cache? | ||
is_plan_from_cache_tooltip: 查询计划是否来自缓存 | ||
is_plan_from_binding: Is Plan from Binding? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
是否绑定执行计划?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here~ Tooltip is not necessary, I think.
Related to: #1451