Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
23 changed files
with
479 additions
and
305 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,7 @@ | ||
| CREATE TABLE t1 (pk INT PRIMARY KEY, a INT); | ||
| INSERT INTO t1 VALUES (1,10),(2,20); | ||
| CREATE TABLE t2 (b INT) PARTITION BY KEY (b) PARTITIONS 2; | ||
| INSERT INTO t2 VALUES (1),(2); | ||
| DELETE t2 FROM t2 WHERE b BETWEEN 5 AND 9; | ||
| UPDATE t2 JOIN t1 SET b = 5; | ||
| DROP TABLE t1, t2; |
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,12 @@ | ||
| --source include/have_partition.inc | ||
|
|
||
| CREATE TABLE t1 (pk INT PRIMARY KEY, a INT); | ||
| INSERT INTO t1 VALUES (1,10),(2,20); | ||
|
|
||
| CREATE TABLE t2 (b INT) PARTITION BY KEY (b) PARTITIONS 2; | ||
| INSERT INTO t2 VALUES (1),(2); | ||
|
|
||
| DELETE t2 FROM t2 WHERE b BETWEEN 5 AND 9; | ||
| UPDATE t2 JOIN t1 SET b = 5; | ||
|
|
||
| DROP TABLE t1, t2; |
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
Oops, something went wrong.