-
Notifications
You must be signed in to change notification settings - Fork 411
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for ALTER TABLE t REORGANIZE PARTITION p INTO (..) (#6428)
close #6444
- Loading branch information
Showing
3 changed files
with
132 additions
and
0 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,101 @@ | ||
# Copyright 2023 PingCAP, Ltd. | ||
# | ||
# 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. | ||
|
||
|
||
mysql> drop table if exists test.t; | ||
mysql> create table test.t (a int primary key, b varchar(255), c int, key (b), key (c,b)) partition by range (a) (partition p0 values less than (1000000), partition p1M values less than (2000000)); | ||
mysql> analyze table test.t; | ||
mysql> alter table test.t set tiflash replica 1; | ||
|
||
func> wait_table test t | ||
|
||
# check table info in tiflash | ||
>> select tidb_database,tidb_name from system.tables where tidb_database = 'test' and tidb_name = 't' and is_tombstone = 0 | ||
┌─tidb_database─┬─tidb_name─┐ | ||
│ test │ t │ | ||
└───────────────┴───────────┘ | ||
|
||
mysql> insert into test.t values (1,"1",-1); | ||
mysql> insert into test.t select a+1,a+1,-(a+1) from test.t; | ||
mysql> insert into test.t select a+2,a+2,-(a+2) from test.t; | ||
mysql> insert into test.t select a+500000,a+500000,-(a+500000) from test.t; | ||
mysql> insert into test.t select a+1000000,a+1000000,-(a+1000000) from test.t; | ||
mysql> select /*+ READ_FROM_STORAGE(TIKV[t]) */ count(*) from test.t partition (p0); | ||
+----------+ | ||
| count(*) | | ||
+----------+ | ||
| 8 | | ||
+----------+ | ||
|
||
mysql> show warnings; | ||
mysql> select /*+ READ_FROM_STORAGE(TIFLASH[t]) */ count(*) from test.t partition (p0); | ||
+----------+ | ||
| count(*) | | ||
+----------+ | ||
| 8 | | ||
+----------+ | ||
|
||
mysql> show warnings; | ||
mysql> select /*+ READ_FROM_STORAGE(TIKV[t]) */ count(*) from test.t partition (p0); | ||
+----------+ | ||
| count(*) | | ||
+----------+ | ||
| 8 | | ||
+----------+ | ||
|
||
mysql> select /*+ READ_FROM_STORAGE(TIFLASH[t]) */ count(*) from test.t partition (p0); | ||
+----------+ | ||
| count(*) | | ||
+----------+ | ||
| 8 | | ||
+----------+ | ||
|
||
mysql> show warnings; | ||
|
||
mysql> alter table test.t reorganize partition p0 INTO (partition p0 values less than (500000), partition p500k values less than (1000000)); | ||
|
||
mysql> select /*+ READ_FROM_STORAGE(TIFLASH[t]) */ count(*) from test.t partition (p0); | ||
+----------+ | ||
| count(*) | | ||
+----------+ | ||
| 4 | | ||
+----------+ | ||
|
||
mysql> show warnings; | ||
|
||
mysql> select /*+ READ_FROM_STORAGE(TIFLASH[t]) */ count(*) from test.t partition (p500k); | ||
+----------+ | ||
| count(*) | | ||
+----------+ | ||
| 4 | | ||
+----------+ | ||
|
||
mysql> show warnings; | ||
|
||
mysql> select /*+ READ_FROM_STORAGE(TIKV[t]) */ count(*) from test.t partition (p0); | ||
+----------+ | ||
| count(*) | | ||
+----------+ | ||
| 4 | | ||
+----------+ | ||
|
||
mysql> select /*+ READ_FROM_STORAGE(TIKV[t]) */ count(*) from test.t partition (p500k); | ||
+----------+ | ||
| count(*) | | ||
+----------+ | ||
| 4 | | ||
+----------+ | ||
|
||
mysql> show warnings; | ||
|