-
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
lightning: rename and move some struct #41946
Conversation
[REVIEW NOTIFICATION] This pull request has been approved by:
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. |
/run-integration-br-test |
// chunkProcessor process data chunk | ||
// for local backend it encodes and writes KV to local disk | ||
// for tidb backend it transforms data into sql and executes them. | ||
type chunkProcessor struct { |
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.
moved from previous restore.go
@@ -780,3 +780,32 @@ func TestCompressChunkRestore(t *testing.T) { | |||
err = cr.parser.ReadRow() | |||
require.Equal(t, io.EOF, errors.Cause(err)) | |||
} | |||
|
|||
func TestGetColumnsNames(t *testing.T) { |
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.
moved from previous restore_table_test.go
@@ -89,12 +91,121 @@ func NewTableRestore( | |||
}, nil | |||
} | |||
|
|||
func (tr *TableRestore) Close() { | |||
func (tr *TableImporter) importTable( |
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.
moved from previous restore.go
/run-integration-br-test |
/run-integration-br-test |
/test build |
/run-integration-br-test |
/merge |
This pull request has been accepted and is ready to merge. Commit hash: 45f828b
|
/merge |
/test build |
@D3Hunter: The specified target(s) for
Use In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/test build |
What problem does this PR solve?
Issue Number: ref #40499
Problem Summary:
What is changed and how it works?
Check List
Tests
Side effects
Documentation
Release note
Please refer to Release Notes Language Style Guide to write a quality release note.