1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

SQL: ignore columns WITHOUT VERSIONING [fixes #220]

This commit is contained in:
Eugene Kosov
2017-07-04 17:45:14 +03:00
committed by GitHub
parent bdcce58fad
commit 1903b407da
7 changed files with 45 additions and 45 deletions

View File

@ -211,7 +211,6 @@ create or replace table t1 (
A3 int,
B int without system versioning
);
ERROR HY000: Wrong parameters for `t1`: missing 'WITH SYSTEM VERSIONING'
create or replace table t1 (
A4 int,
B int without system versioning
@ -254,7 +253,6 @@ t1 CREATE TABLE `t1` (
create or replace table t1 (
A7 int without system versioning
);
ERROR HY000: Wrong parameters for `t1`: missing 'WITH SYSTEM VERSIONING'
create or replace table t1 (
A8 int without system versioning
) with system versioning;