mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
rename system_time columns
sys_trx_start -> row_start sys_trx_end -> row_end
This commit is contained in:
committed by
Aleksey Midenkov
parent
cf1e5bef59
commit
b85efdc3af
@@ -1,7 +1,7 @@
|
||||
call create_table('t', 'x int');
|
||||
insert t values (1, 2);
|
||||
replace t values (1, 3);
|
||||
select *, current_row(sys_trx_end) as current from t for system_time all
|
||||
select *, current_row(row_end) as current from t for system_time all
|
||||
order by x;
|
||||
id x current
|
||||
1 2 0
|
||||
|
Reference in New Issue
Block a user