-
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: support data files with bom header #40813
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
69c4d71
lightning: support files with BOM header
dsdashun 14ed35a
update bazel file
dsdashun de2faf1
Merge branch 'master' into fix-40744
hawkingrei 9749703
optimize ut to verify bom header
dsdashun a20905f
find alternatives to xxd to check BOM header
dsdashun File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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
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
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,2 @@ | ||
[mydumper.csv] | ||
header = true |
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,5 @@ | ||
CREATE TABLE testtbl ( | ||
id INTEGER, | ||
val1 VARCHAR(40) NOT NULL, | ||
INDEX `idx_val1` (`val1`) | ||
); |
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,6 @@ | ||
id,val1 | ||
1,"aaa01" | ||
2,"aaa01" | ||
3,"aaa02" | ||
4,"aaa02" | ||
5,"aaa05" |
5 changes: 5 additions & 0 deletions
5
br/tests/lightning_bom_file/original_data/mytest.testtbl-schema.sql
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,5 @@ | ||
CREATE TABLE testtbl ( | ||
id INTEGER, | ||
val1 VARCHAR(40) NOT NULL, | ||
INDEX `idx_val1` (`val1`) | ||
); |
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,6 @@ | ||
id,val1 | ||
1,"aaa01" | ||
2,"aaa01" | ||
3,"aaa02" | ||
4,"aaa02" | ||
5,"aaa05" |
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,56 @@ | ||
#!/bin/sh | ||
# | ||
# Copyright 2023 PingCAP, Inc. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
set -eux | ||
|
||
mydir=$(dirname "${BASH_SOURCE[0]}") | ||
|
||
original_schema_file="${mydir}/original_data/mytest.testtbl-schema.sql" | ||
original_data_file="${mydir}/original_data/mytest.testtbl.csv" | ||
schema_file="${original_schema_file/original_data/data}" | ||
data_file="${original_data_file/original_data/data}" | ||
|
||
# add the BOM header | ||
printf '\xEF\xBB\xBF' | cat - <( sed '1s/^\xEF\xBB\xBF//' "${original_schema_file}" ) > "${schema_file}" | ||
printf '\xEF\xBB\xBF' | cat - <( sed '1s/^\xEF\xBB\xBF//' "${original_data_file}" ) > "${data_file}" | ||
|
||
# verify the BOM header | ||
if ! grep -q $'^\xEF\xBB\xBF' "${schema_file}"; then | ||
echo "schema file doesn't contain the BOM header" >&2 | ||
exit 1 | ||
fi | ||
|
||
if ! grep -q $'^\xEF\xBB\xBF' "${data_file}"; then | ||
echo "data file doesn't contain the BOM header" >&2 | ||
exit 1 | ||
fi | ||
|
||
row_count=$( sed '1d' "${data_file}" | wc -l | xargs echo ) | ||
|
||
run_lightning --backend tidb | ||
|
||
# Check that everything is correctly imported | ||
run_sql 'SELECT count(*) FROM mytest.testtbl' | ||
check_contains "count(*): ${row_count}" | ||
|
||
check_cluster_version 4 0 0 'local backend' || exit 0 | ||
run_sql "DROP TABLE mytest.testtbl" | ||
|
||
run_lightning --backend local | ||
|
||
# Check that everything is correctly imported | ||
run_sql 'SELECT count(*) FROM mytest.testtbl' | ||
check_contains "count(*): ${row_count}" |
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
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Maybe check the BOM really exists in run.sh 😂
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.
I remember the BOM header cannot be presented properly in the text editor...Maybe it's just ignored similarly by GitHub
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.
it has no visual output, but we can use
xxd
or something tools to check it. I'm afraid that the BOM header will be deleted accidentally in future.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.
addressed in 9749703