-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into supplyCasesForPCParamLimit
- Loading branch information
Showing
20 changed files
with
560 additions
and
31 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
5 changes: 5 additions & 0 deletions
5
br/tests/lightning_config_max_error/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 PRIMARY KEY, | ||
val1 VARCHAR(40) NOT NULL, | ||
INDEX `idx_val1` (`val1`) | ||
); |
16 changes: 16 additions & 0 deletions
16
br/tests/lightning_config_max_error/data/mytest.testtbl.csv
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,16 @@ | ||
id,val1 | ||
1,"aaa01" | ||
2,"aaa01" | ||
3,"aaa02" | ||
4,"aaa02" | ||
5,"aaa05" | ||
6,"aaa06" | ||
7,"aaa07" | ||
8,"aaa08" | ||
9,"aaa09" | ||
10,"aaa10" | ||
1,"bbb01" | ||
2,"bbb02" | ||
3,"bbb03" | ||
4,"bbb04" | ||
5,"bbb05" |
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,8 @@ | ||
[lightning.max-error] | ||
conflict = 4 | ||
|
||
[mydumper.csv] | ||
header = true | ||
|
||
[tikv-importer] | ||
duplicate-resolution = 'remove' |
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,8 @@ | ||
[lightning.max-error] | ||
conflict = 20 | ||
|
||
[mydumper.csv] | ||
header = true | ||
|
||
[tikv-importer] | ||
duplicate-resolution = 'remove' |
8 changes: 8 additions & 0 deletions
8
br/tests/lightning_config_max_error/normal_config_old_style.toml
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,8 @@ | ||
[lightning] | ||
max-error = 0 # this actually sets the type error | ||
|
||
[mydumper.csv] | ||
header = true | ||
|
||
[tikv-importer] | ||
duplicate-resolution = 'remove' |
Oops, something went wrong.