Details
-
Task
-
Status: Open (View Workflow)
-
Minor
-
Resolution: Unresolved
-
None
-
None
Description
The WITH SYSTEM VERSIONING column option is intended to enable system versioning on a column level.
With this column option, it is even possible use CREATE TABLE to create a system-versioned table that only provides system versioning for a single column:
MariaDB [test]> CREATE TABLE accounts_col ( |
-> id SERIAL PRIMARY KEY, |
-> name VARCHAR(255), |
-> amount INT WITH SYSTEM VERSIONING |
-> );
|
Query OK, 0 rows affected (0.021 sec) |
However, if you try to add the column option to a column in a non-system-versioned table, it raises an error message:
MariaDB [test]> ALTER TABLE accounts_col |
-> MODIFY name VARCHAR(255) WITH SYSTEM VERSIONING; |
ERROR 4124 (HY000): Table `accounts_col` is not system-versioned |
If this works for CREATE TABLE, shouldn't it also work for ALTER TABLE?
To reproduce:
CREATE TABLE accounts_col ( |
id SERIAL PRIMARY KEY, |
name VARCHAR(255), |
amount INT |
);
|
|
ALTER TABLE accounts_col |
MODIFY name VARCHAR(255) WITH SYSTEM VERSIONING; |
Attachments
Issue Links
- is caused by
-
MDEV-12894 System-versioned tables
-
- Closed
-
- relates to
-
MDEV-26934 ADD SYSTEM VERSIONING and modify column WITHOUT SYSTEM VERSIONING in single ALTER TABLE command
-
- Open
-
Activity
Field | Original Value | New Value |
---|---|---|
Link |
This issue is caused by |
Assignee | Nikita Malyavin [ nikitamalyavin ] | Aleksey Midenkov [ midenok ] |
Component/s | Data Definition - Alter Table [ 10114 ] | |
Component/s | Versioned Tables [ 14303 ] | |
Component/s | Data Definition - Alter Table [ 14927 ] | |
Component/s | Versioned Tables [ 15003 ] | |
Key | MENT-1357 | MDEV-26993 |
Affects Version/s | 10.3 [ 22126 ] | |
Affects Version/s | 10.6.4-1 [ 26058 ] | |
Project | MariaDB Enterprise [ 11500 ] | MariaDB Server [ 10000 ] |
Affects Version/s | 10.3 [ 22126 ] | |
Issue Type | Bug [ 1 ] | Task [ 3 ] |
Summary | Error when adding system versioning for a single column to a non-system-versioned table | Add system versioning via modify column WITH SYSTEM VERSIONING |
Link | This issue relates to MDEV-26934 [ MDEV-26934 ] |
Priority | Major [ 3 ] | Minor [ 4 ] |
Workflow | MariaDB v3 [ 126846 ] | MariaDB v4 [ 131581 ] |
That didn't work by design. As a new feature would be nice to have it.