1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

SQL: ADD/DROP SYSTEM VERSIONING syntax for ALTER TABLE

This commit is contained in:
Eugene Kosov
2017-11-13 23:54:04 +03:00
committed by Aleksey Midenkov
parent 67907c699c
commit f9b8c908a0
6 changed files with 63 additions and 87 deletions

View File

@ -270,10 +270,6 @@ create or replace table t1 (
A8 int without system versioning
) with system versioning;
ERROR HY000: Wrong parameters for `t1`: no columns defined 'WITH SYSTEM VERSIONING'
create table t(
a11 int
) without system versioning;
ERROR HY000: Wrong parameters for `t`: not allowed 'WITHOUT SYSTEM VERSIONING'
create or replace table t1 (a int) with system versioning;
create temporary table tmp with system versioning select * from t1;
create or replace table t1 (a int) with system versioning;