Commit 62d3c3d3 authored by unknown's avatar unknown

Bug#22351 - handler::index_next_same() call to key_cmp_if_same() uses

            the wrong buffer
Post-pushbuild fix
Added test case for better coverage.


mysql-test/r/partition.result:
  Bug#22351 - handler::index_next_same() call to key_cmp_if_same() uses
              the wrong buffer
  Added test result
mysql-test/t/partition.test:
  Bug#22351 - handler::index_next_same() call to key_cmp_if_same() uses
              the wrong buffer
  Added test case
parent ff67f76d
...@@ -289,6 +289,13 @@ select * from t1 where a = 4; ...@@ -289,6 +289,13 @@ select * from t1 where a = 4;
a b a b
4 4 4 4
drop table t1; drop table t1;
CREATE TABLE t1 (c1 INT, c2 INT, PRIMARY KEY USING BTREE (c1,c2)) ENGINE=MEMORY
PARTITION BY KEY(c2,c1) PARTITIONS 4;
INSERT INTO t1 VALUES (0,0),(1,1),(2,2),(3,3),(4,4),(5,5),(6,6);
SELECT * FROM t1 WHERE c1 = 4;
c1 c2
4 4
DROP TABLE t1;
CREATE TABLE t1 (a int) CREATE TABLE t1 (a int)
PARTITION BY LIST (a) PARTITION BY LIST (a)
PARTITIONS 1 PARTITIONS 1
......
...@@ -372,6 +372,16 @@ select * from t1 where a = 4; ...@@ -372,6 +372,16 @@ select * from t1 where a = 4;
drop table t1; drop table t1;
#
# Bug#22351 - handler::index_next_same() call to key_cmp_if_same()
# uses the wrong buffer
#
CREATE TABLE t1 (c1 INT, c2 INT, PRIMARY KEY USING BTREE (c1,c2)) ENGINE=MEMORY
PARTITION BY KEY(c2,c1) PARTITIONS 4;
INSERT INTO t1 VALUES (0,0),(1,1),(2,2),(3,3),(4,4),(5,5),(6,6);
SELECT * FROM t1 WHERE c1 = 4;
DROP TABLE t1;
# #
# Bug #13438: Engine clause in PARTITION clause causes crash # Bug #13438: Engine clause in PARTITION clause causes crash
# #
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment