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

Tests: verify_vtq() fix

This commit is contained in:
Aleksey Midenkov
2017-04-27 10:50:23 +03:00
parent 122ffa2211
commit b19645caf5
10 changed files with 20 additions and 20 deletions

View File

@ -6,9 +6,9 @@ set @i= 0;
select
@i:= @i + 1 as No,
trx_id > 0 as A,
commit_id >= trx_id as B,
commit_id > trx_id as B,
begin_ts > '1-1-1 0:0:0' as C,
commit_ts > begin_ts as D
commit_ts >= begin_ts as D
from information_schema.innodb_vtq
where trx_id > @start_trx_id;
select ifnull(max(trx_id), 0)