forked from pingcap/tidb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is an automated cherry-pick of pingcap#40813
Signed-off-by: ti-chi-bot <[email protected]>
- Loading branch information
1 parent
0170ac3
commit 2ae0d02
Showing
12 changed files
with
107 additions
and
2 deletions.
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