Details
-
Task
-
Status: Open (View Workflow)
-
Major
-
Resolution: Unresolved
-
None
-
None
Description
CREATE OR REPLACE TABLE inv ( |
x INT, |
start_trxid BIGINT UNSIGNED GENERATED ALWAYS AS ROW START INVISIBLE, |
end_trxid BIGINT UNSIGNED GENERATED ALWAYS AS ROW END INVISIBLE, |
PERIOD FOR SYSTEM_TIME(start_trxid, end_trxid) |
) WITH SYSTEM VERSIONING; |
|
alter table inv PARTITION BY SYSTEM_TIME ( |
PARTITION p_hist HISTORY,
|
PARTITION p_cur CURRENT |
);
|
|
ERROR 4110 (HY000): `start_trxid` must be of type TIMESTAMP(6) for system-versioned table `inv` |
Attachments
Issue Links
- relates to
-
MDEV-15951 system versioning by trx id doesn't work with partitioning
-
- Closed
-
-
MDEV-20271 Partitioned versioned tables do not accept Trx IDs
-
- Open
-
-
MDEV-23773 Cannot store the history separately for the transaction precise history tables.
-
- Open
-
Activity
Field | Original Value | New Value |
---|---|---|
Link |
This issue relates to |
Link | This issue relates to MDEV-20271 [ MDEV-20271 ] |
Link | This issue relates to MDEV-23773 [ MDEV-23773 ] |
Workflow | MariaDB v3 [ 120189 ] | MariaDB v4 [ 131461 ] |
It is
MDEV-15951, MDEV-20271, and MDEV-23773.I don't know if it eventually got documented, though.