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

SQL: DEFAULT value for system fields [closes #376]

This commit is contained in:
Aleksey Midenkov
2017-12-10 23:52:51 +03:00
parent 2968543f8d
commit b7cd182896
3 changed files with 19 additions and 8 deletions

View File

@ -120,10 +120,13 @@ insert into t1(x, y) values
(3, 3001),
(4, 4001),
(5, 5001),
(6, 6001),
(7, 7001),
(8, 8001),
(9, 9001);
(6, 6001);
insert into t1(x, y, sys_start) values
(7, 7001, DEFAULT);
insert into t1(x, y, sys_end) values
(8, 8001, DEFAULT);
insert into t1(x, y, sys_start, sys_end) values
(9, 9001, DEFAULT, DEFAULT);
insert into t2 select x, y from t1 for system_time between timestamp '0000-0-0 0:0:0' and timestamp '9999-1-1 0:0:0';
select x, y from t1;
select x, y from t2;
@ -259,6 +262,9 @@ No A B C D
13 1 1 1 1
14 1 1 1 1
15 1 1 1 1
16 1 1 1 1
17 1 1 1 1
18 1 1 1 1
create table t1(
x int unsigned,
sys_start bigint unsigned generated always as row start,