1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +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

@@ -194,11 +194,6 @@ create or replace table t1 (
# table with/without system versioning
--error ER_VERS_WRONG_PARAMS
create table t(
a11 int
) without system versioning;
create or replace table t1 (a int) with system versioning;
create temporary table tmp with system versioning select * from t1;