mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Update versioning.alter after typo fix
This commit is contained in:
@ -528,9 +528,9 @@ ERROR HY000: Table `t` is already system-versioned
|
|||||||
#
|
#
|
||||||
use mysql;
|
use mysql;
|
||||||
create or replace table t (x int) with system versioning;
|
create or replace table t (x int) with system versioning;
|
||||||
ERROR HY000: System versioning tables in the `mysql` database are not suported
|
ERROR HY000: System versioning tables in the `mysql` database are not supported
|
||||||
alter table user add system versioning;
|
alter table user add system versioning;
|
||||||
ERROR HY000: System versioning tables in the `mysql` database are not suported
|
ERROR HY000: System versioning tables in the `mysql` database are not supported
|
||||||
use test;
|
use test;
|
||||||
# MDEV-15956 Strange ER_UNSUPPORTED_ACTION_ON_GENERATED_COLUMN upon ALTER on versioning column
|
# MDEV-15956 Strange ER_UNSUPPORTED_ACTION_ON_GENERATED_COLUMN upon ALTER on versioning column
|
||||||
create or replace table t1 (i int, j int as (i), s timestamp(6) as row start, e timestamp(6) as row end, period for system_time(s,e)) with system versioning;
|
create or replace table t1 (i int, j int as (i), s timestamp(6) as row start, e timestamp(6) as row end, period for system_time(s,e)) with system versioning;
|
||||||
|
Reference in New Issue
Block a user