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.
lightning: fix insert err after import for AUTO_ID_CACHE=1 and SHARD_…
…ROW_ID_BITS (pingcap#52712) (pingcap#53704) close pingcap#52654
- Loading branch information
1 parent
18fcc2f
commit 42669ad
Showing
15 changed files
with
129 additions
and
44 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,35 @@ | ||
// Copyright 2024 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. | ||
|
||
package kv | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/pingcap/tidb/meta/autoid" | ||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
func TestAllocator(t *testing.T) { | ||
alloc := NewPanickingAllocators(true, 0) | ||
require.NoError(t, alloc.Get(autoid.RowIDAllocType).Rebase(nil, 123, false)) | ||
// cannot revert back | ||
require.NoError(t, alloc.Get(autoid.RowIDAllocType).Rebase(nil, 100, false)) | ||
require.NoError(t, alloc.Get(autoid.AutoIncrementType).Rebase(nil, 456, false)) | ||
require.NoError(t, alloc.Get(autoid.AutoRandomType).Rebase(nil, 789, false)) | ||
|
||
require.EqualValues(t, 123, alloc.Get(autoid.RowIDAllocType).Base()) | ||
require.EqualValues(t, 456, alloc.Get(autoid.AutoIncrementType).Base()) | ||
require.EqualValues(t, 789, alloc.Get(autoid.AutoRandomType).Base()) | ||
} |
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
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
9 changes: 9 additions & 0 deletions
9
br/tests/lightning_csv/data/auto_incr_id.nonclustered_cache1_shard_autorowid-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,9 @@ | ||
/* | ||
1778961125641936898 is 0001100010110000001000111011011111101011000111011110000000000010 | ||
bigger than the max increment part of sharded auto row id. | ||
*/ | ||
CREATE TABLE nonclustered_cache1_shard_autorowid ( | ||
id bigint(20) unsigned NOT NULL AUTO_INCREMENT, | ||
v int, | ||
PRIMARY KEY (id) NONCLUSTERED | ||
) AUTO_ID_CACHE=1 SHARD_ROW_ID_BITS=4; |
3 changes: 3 additions & 0 deletions
3
br/tests/lightning_csv/data/auto_incr_id.nonclustered_cache1_shard_autorowid.0.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,3 @@ | ||
1778961125641936898,1 | ||
1778961125641936899,2 | ||
1778961125641936900,3 |
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
4 changes: 3 additions & 1 deletion
4
br/tests/lightning_tidb_rowid/data/rowid.specific_auto_inc-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 |
---|---|---|
@@ -1 +1,3 @@ | ||
create table specific_auto_inc (a varchar(6) primary key /*T![clustered_index] NONCLUSTERED */, b int unique auto_increment) auto_increment=80000; | ||
create table specific_auto_inc ( | ||
a varchar(6) primary key /*T![clustered_index] NONCLUSTERED */, | ||
b int unique auto_increment) auto_increment=80000; |
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