blob: 54ab5b49c2a756eb29d6d1a592c8d069323ffa5e (
plain)
1
2
3
4
5
6
7
8
9
10
|
call create_table('t', 'x int');
insert t values (1, 2);
replace t values (1, 3);
select *, row_end>TIMESTAMP'2038-01-01 00:00:00' as current from t for system_time all
order by x;
id x current
1 2 0
1 3 1
drop database test;
create database test;
|