-
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.
lightning: support null value for auto-incr column on local backend (#…
- Loading branch information
Showing
9 changed files
with
219 additions
and
33 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[tikv-importer] | ||
backend = "local" |
1 change: 1 addition & 0 deletions
1
br/tests/lightning_auto_columns/data/lightning_auto_cols-schema-create.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 @@ | ||
create schema lightning_auto_cols; |
3 changes: 3 additions & 0 deletions
3
br/tests/lightning_auto_columns/data/lightning_auto_cols.t_auto_incr-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,3 @@ | ||
CREATE TABLE t_auto_incr ( | ||
id bigint PRIMARY KEY AUTO_INCREMENT, | ||
c char(40) NOT NULL DEFAULT ''); |
8 changes: 8 additions & 0 deletions
8
br/tests/lightning_auto_columns/data/lightning_auto_cols.t_auto_incr.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,8 @@ | ||
INSERT INTO t_auto_incr (id, c) VALUES | ||
(1, 'normal_pk_01'); | ||
INSERT INTO t_auto_incr VALUES | ||
(NULL, 'null_pk_02'); | ||
INSERT INTO t_auto_incr VALUES | ||
(NULL, 'null_pk_03'); | ||
INSERT INTO t_auto_incr (id, c) VALUES | ||
(4, 'normal_pk_04'); |
3 changes: 3 additions & 0 deletions
3
br/tests/lightning_auto_columns/data/lightning_auto_cols.t_auto_random-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,3 @@ | ||
CREATE TABLE t_auto_random ( | ||
id bigint PRIMARY KEY AUTO_RANDOM(3), | ||
c char(40) NOT NULL DEFAULT ''); |
8 changes: 8 additions & 0 deletions
8
br/tests/lightning_auto_columns/data/lightning_auto_cols.t_auto_random.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,8 @@ | ||
INSERT INTO t_auto_random (id, c) VALUES | ||
(1, 'normal_pk_01'); | ||
INSERT INTO t_auto_random VALUES | ||
(NULL, 'null_pk_02'); | ||
INSERT INTO t_auto_random VALUES | ||
(NULL, 'null_pk_03'); | ||
INSERT INTO t_auto_random (id, c) VALUES | ||
(4, 'normal_pk_04'); |
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,38 @@ | ||
#!/bin/sh | ||
# | ||
# Copyright 2020 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 | ||
|
||
run_sql 'DROP DATABASE IF EXISTS lightning_auto_cols;' | ||
run_lightning | ||
|
||
run_sql "SELECT CONCAT_WS(':', id, c) AS row_data FROM lightning_auto_cols.t_auto_incr;" | ||
check_contains "row_data: 1:normal_pk_01" | ||
check_contains "row_data: 2:null_pk_02" | ||
check_contains "row_data: 3:null_pk_03" | ||
check_contains "row_data: 4:normal_pk_04" | ||
run_sql "SELECT COUNT(*) AS row_count FROM lightning_auto_cols.t_auto_incr;" | ||
check_contains "row_count: 4" | ||
|
||
run_sql "SELECT CONCAT_WS(':', id, c) AS row_data FROM lightning_auto_cols.t_auto_random;" | ||
check_contains "row_data: 1:normal_pk_01" | ||
check_contains ":null_pk_02" | ||
check_not_contains "row_data: 0:null_pk_02" | ||
check_contains ":null_pk_03" | ||
check_not_contains "row_data: 0:null_pk_03" | ||
check_contains "row_data: 4:normal_pk_04" | ||
run_sql "SELECT COUNT(*) AS row_count FROM lightning_auto_cols.t_auto_random;" | ||
check_contains "row_count: 4" |