1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

MDEV-14792 INSERT without column list into table with explicit versioning columns produces bad data

This commit is contained in:
Aleksey Midenkov
2018-01-01 13:41:50 +03:00
parent 157150cfcf
commit 8efca72f4a
13 changed files with 74 additions and 146 deletions

View File

@@ -323,8 +323,8 @@ t2 CREATE TABLE `t2` (
) ENGINE=NON_DEFAULT_ENGINE DEFAULT CHARSET=latin1 WITH SYSTEM VERSIONING
create or replace table t1 (
x26 int,
st bigint unsigned as row start invisible,
en bigint unsigned as row end invisible,
st bigint unsigned as row start,
en bigint unsigned as row end,
period for system_time (st, en)
) with system versioning engine innodb;
create or replace table t2 with system versioning engine myisam