Details
-
Bug
-
Status: Closed (View Workflow)
-
Critical
-
Resolution: Fixed
-
10.3.4
-
None
Description
create or replace table t1 (x int) |
with system versioning |
partition by system_time ( |
partition p0 history,
|
partition pn current); |
insert into t1 values (1); |
explain partitions select * from t1; |
+------+-------------+-------+------------+------+---------------+------+---------+------+------+-------------+
|
| id | select_type | table | partitions | type | possible_keys | key | key_len | ref | rows | Extra |
|
+------+-------------+-------+------------+------+---------------+------+---------+------+------+-------------+
|
| 1 | SIMPLE | t1 | p0,pn | ALL | NULL | NULL | NULL | NULL | 2 | Using where |
|
+------+-------------+-------+------------+------+---------------+------+---------+------+------+-------------+
|
Broken after https://github.com/MariaDB/server/commit/fbed4ca4f1fb827181074233be849665abf6091d
Attachments
Issue Links
- is duplicated by
-
MDEV-15036 Assertion `!is_set() || (m_status == DA_OK_BULK && is_bulk_op())' in Diagnostics_area::set_ok_status or unexpected ER_RANGE_NOT_INCREASING_ERROR
-
- Closed
-
-
MDEV-15191 Assertion `bit < (map)->n_bits' failed in bitmap_is_set upon INSERT
-
- Closed
-