-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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
infoschema/executor : add DDLJobs sys table #14837
Conversation
/run-build |
/rebuild |
executor/infoschema_reader_test.go
Outdated
@@ -16,6 +16,7 @@ package executor_test | |||
import ( | |||
"crypto/tls" | |||
"fmt" | |||
"google.golang.org/grpc" |
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.
format code
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.
REST LGTM
… into add_ddljobs_sys_table
/run-unit-test |
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.
LGTM
/run-all-tests |
What problem does this PR solve?
Currently, we can view the history of DDL jobs and DDL jobs by 'admin show DDL jobs', but it is not convenient to use queries such as group by, so we need to add a system table of DDL_JOBS.
What is changed and how it works?
Group by:
Check List
Tests
Code changes