mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge 10.3 into 10.4
This commit is contained in:
@ -396,3 +396,14 @@ create table t (
|
||||
) with system versioning;
|
||||
|
||||
--source suite/versioning/common_finish.inc
|
||||
--echo # MDEV-16490 It's possible to make a system versioned table without any versioning field
|
||||
create or replace table t1 (x int without system versioning)
|
||||
with system versioning
|
||||
select 1 as y;
|
||||
--error ER_VERS_TABLE_MUST_HAVE_COLUMNS
|
||||
create or replace table t1 (x int without system versioning)
|
||||
with system versioning
|
||||
select 1 as x;
|
||||
|
||||
drop database test;
|
||||
create database test;
|
||||
|
Reference in New Issue
Block a user