mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
merging.
This commit is contained in:
@@ -577,6 +577,19 @@ connection default;
|
||||
SELECT * FROM t1;
|
||||
COMMIT;
|
||||
DROP TABLE t1;
|
||||
|
||||
#
|
||||
# Bug #55146 Assertion `m_part_spec.start_part == m_part_spec.end_part' in index_read_idx_map
|
||||
#
|
||||
|
||||
CREATE TABLE t1 (i1 int NOT NULL primary key, f1 int) ENGINE = InnoDB
|
||||
PARTITION BY HASH(i1) PARTITIONS 2;
|
||||
|
||||
INSERT INTO t1 VALUES (1,1), (2,2);
|
||||
|
||||
SELECT * FROM t1 WHERE i1 = ( SELECT i1 FROM t1 WHERE f1=0 LIMIT 1 );
|
||||
DROP TABLE t1;
|
||||
|
||||
--enable_parsing
|
||||
|
||||
--echo #
|
||||
|
||||
Reference in New Issue
Block a user