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.
Browse files
MDEV-16741 Assertion `m_extra_cache' failed in ha_partition::late_ext…
…ra_cache multi_delete sets TABLE::no_cache=1 and should set it to 0 when DELETE is done.
- Loading branch information
Showing
4 changed files
with
21 additions
and
1 deletion.
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
| 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