From 62d3c3d3a1c7ceed7170913189dd0e4437f2d37e Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 15 Nov 2007 11:36:50 +0100 Subject: 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 --- mysql-test/t/partition.test | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'mysql-test/t') diff --git a/mysql-test/t/partition.test b/mysql-test/t/partition.test index f986215ee89..8114b85c0f9 100644 --- a/mysql-test/t/partition.test +++ b/mysql-test/t/partition.test @@ -372,6 +372,16 @@ select * from t1 where a = 4; 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 # -- cgit v1.2.1