Check firebird.log [no messages found for interval when this test was running]
Jump to: output_first_mismatch    outcomes_full_history    elapsed_time_chart
Show cross-report outcomes.

Annotation type Annotation details
2 @message
assert   
    checked_mode: table, STDLOG: Records affected: 4
    checked_mode: table, STDLOG: Records affected: 0
    checked_mode: table, STDLOG: OLD_ID OP SNAP_NO_RANK
    checked_mode: table, STDLOG:
  - checked_mode: table, STDLOG: 3 DEL 1
  + checked_mode: table, STDLOG: 3DEL 1
  - checked_mode: table, STDLOG: 3 DEL 2
  + checked_mode: table, STDLOG: 3DEL 2
  - checked_mode: table, STDLOG: 3 DEL 3
  + checked_mode: table, STDLOG: 3DEL 3
  - checked_mode: table, STDLOG: 4 DEL 3
  + checked_mode: table, STDLOG: 4DEL 3
  - checked_mode: table, STDLOG: 5 DEL 3
  + checked_mode: table, STDLOG: 5DEL 3
  - checked_mode: table, STDLOG: 6 DEL 3
  + checked_mode: table, STDLOG: 6DEL 3
    checked_mode: table, STDLOG: Records affected: 6

LOG DETAILS:

2025-07-02 06:07:49.168
2025-07-02 06:07:49.176 act = <firebird.qa.plugin.Action object at [hex]>
2025-07-02 06:07:49.184 fn_worker_sql = PosixPath('/var/tmp/qa_2024/test_12483/tmp_worker.sql')
2025-07-02 06:07:49.191 fn_worker_log = PosixPath('/var/tmp/qa_2024/test_12483/tmp_worker.log')
2025-07-02 06:07:49.199 fn_worker_err = PosixPath('/var/tmp/qa_2024/test_12483/tmp_worker.err')
2025-07-02 06:07:49.206 capsys = <_pytest.capture.CaptureFixture object at [hex]>
2025-07-02 06:07:49.213
2025-07-02 06:07:49.219 @pytest.mark.trace
2025-07-02 06:07:49.229 @pytest.mark.version('>=4.0.2')
2025-07-02 06:07:49.235 def test_1(act: Action, fn_worker_sql: Path, fn_worker_log: Path, fn_worker_err: Path, capsys):
2025-07-02 06:07:49.241 sql_init = (act.files_dir / 'read-consist-sttm-restart-DDL.sql').read_text()
2025-07-02 06:07:49.248
2025-07-02 06:07:49.254 for checked_mode in('table', 'view'):
2025-07-02 06:07:49.261 target_obj = 'test' if checked_mode == 'table' else 'v_test'
2025-07-02 06:07:49.267
2025-07-02 06:07:49.275 SQL_TO_BE_RESTARTED = f"""
2025-07-02 06:07:49.285 merge /* {SQL_TAG_THAT_WE_WAITING_FOR} */ into {target_obj} t
2025-07-02 06:07:49.294 using(select * from {target_obj} where id >= 3 order by id) s on t.id = s.id
2025-07-02 06:07:49.305 when matched then
2025-07-02 06:07:49.316 DELETE
2025-07-02 06:07:49.324 """
2025-07-02 06:07:49.331
2025-07-02 06:07:49.338 # add rows to test with ID = 2, 3, 5; add several child rows into detl.
2025-07-02 06:07:49.350 sql_addi='''
2025-07-02 06:07:49.360 recreate table detl(id int, PID int references test on delete cascade on update cascade);
2025-07-02 06:07:49.367 commit;
2025-07-02 06:07:49.376
2025-07-02 06:07:49.389 delete from test;
2025-07-02 06:07:49.399 insert into test(id, x) values(2,2);
2025-07-02 06:07:49.411 insert into test(id, x) values(3,3);
2025-07-02 06:07:49.423 insert into test(id, x) values(5,5);
2025-07-02 06:07:49.436 insert into detl(id, pid) values(2000, 2);
2025-07-02 06:07:49.447 insert into detl(id, pid) values(2001, 2);
2025-07-02 06:07:49.461 insert into detl(id, pid) values(2002, 2);
2025-07-02 06:07:49.470 insert into detl(id, pid) values(3001, 3);
2025-07-02 06:07:49.480 insert into detl(id, pid) values(5001, 5);
2025-07-02 06:07:49.492 insert into detl(id, pid) values(5001, 5);
2025-07-02 06:07:49.500 commit;
2025-07-02 06:07:49.507 '''
2025-07-02 06:07:49.512
2025-07-02 06:07:49.519 act.isql(switches=['-q'], input = 'recreate table detl(id int);' ) # drop dependencies
2025-07-02 06:07:49.525 act.isql(switches=['-q'], input = ''.join( (sql_init, sql_addi) ) )
2025-07-02 06:07:49.533 # ::: NOTE ::: We have to immediately quit if any error raised in prepare phase.
2025-07-02 06:07:49.540 # See also letter from dimitr, 01-feb-2022 14:46
2025-07-02 06:07:49.546 assert act.stderr == ''
2025-07-02 06:07:49.551 act.reset()
2025-07-02 06:07:49.556
2025-07-02 06:07:49.561
2025-07-02 06:07:49.566 trace_cfg_items = [
2025-07-02 06:07:49.574 'time_threshold = 0',
2025-07-02 06:07:49.582 'log_errors = true',
2025-07-02 06:07:49.589 'log_statement_start = true',
2025-07-02 06:07:49.596 'log_statement_finish = true',
2025-07-02 06:07:49.601 ]
2025-07-02 06:07:49.607
2025-07-02 06:07:49.613 with act.trace(db_events = trace_cfg_items, encoding=locale.getpreferredencoding()):
2025-07-02 06:07:49.622
2025-07-02 06:07:49.631 with act.db.connect() as con_lock_1, act.db.connect() as con_lock_2, act.db.connect() as con_monitoring:
2025-07-02 06:07:49.638
2025-07-02 06:07:49.645 tpb_monitoring = tpb(isolation=Isolation.READ_COMMITTED_RECORD_VERSION, lock_timeout=0)
2025-07-02 06:07:49.653 tx_monitoring = con_monitoring.transaction_manager(tpb_monitoring)
2025-07-02 06:07:49.660 cur_monitoring = tx_monitoring.cursor()
2025-07-02 06:07:49.668
2025-07-02 06:07:49.676 for i,c in enumerate((con_lock_1,con_lock_2)):
2025-07-02 06:07:49.683 sttm = f"execute block as begin rdb$set_context('USER_SESSION', 'WHO', 'LOCKER #{i+1}'); end"
2025-07-02 06:07:49.691 c.execute_immediate(sttm)
2025-07-02 06:07:49.702
2025-07-02 06:07:49.710 #########################
2025-07-02 06:07:49.717 ###  L O C K E R - 1  ###
2025-07-02 06:07:49.724 #########################
2025-07-02 06:07:49.730
2025-07-02 06:07:49.738 con_lock_1.execute_immediate( f'update {target_obj} set id=id where id=5' )
2025-07-02 06:07:49.748
2025-07-02 06:07:49.759 worker_sql = f'''
2025-07-02 06:07:49.767 set list on;
2025-07-02 06:07:49.774 set autoddl off;
2025-07-02 06:07:49.779 set term ^;
2025-07-02 06:07:49.785 execute block returns (whoami varchar(30)) as
2025-07-02 06:07:49.790 begin
2025-07-02 06:07:49.797 whoami = 'WORKER'; -- , ATT#' || current_connection;
2025-07-02 06:07:49.806 rdb$set_context('USER_SESSION','WHO', whoami);
2025-07-02 06:07:49.815 -- suspend;
2025-07-02 06:07:49.823 end
2025-07-02 06:07:49.831 ^
2025-07-02 06:07:49.838 set term ;^
2025-07-02 06:07:49.847 commit;
2025-07-02 06:07:49.861 SET KEEP_TRAN_PARAMS ON;
2025-07-02 06:07:49.874 set transaction read committed read consistency;
2025-07-02 06:07:49.884 set list off;
2025-07-02 06:07:49.893 set wng off;
2025-07-02 06:07:49.900 set count on;
2025-07-02 06:07:49.907
2025-07-02 06:07:49.914 -- MUST HANG:
2025-07-02 06:07:49.921 {SQL_TO_BE_RESTARTED};
2025-07-02 06:07:49.927
2025-07-02 06:07:49.934 -- check results:
2025-07-02 06:07:49.940 -- ###############
2025-07-02 06:07:49.947 select id from {target_obj} order by id; -- this will produce output only after all lockers do their commit/rollback
2025-07-02 06:07:49.954
2025-07-02 06:07:49.959 select v.old_id, v.op, v.snap_no_rank
2025-07-02 06:07:49.965 from v_worker_log v
2025-07-02 06:07:49.971 where v.op = 'del';
2025-07-02 06:07:49.976
2025-07-02 06:07:49.983 rollback;
2025-07-02 06:07:49.989
2025-07-02 06:07:49.998 '''
2025-07-02 06:07:50.010
2025-07-02 06:07:50.020 fn_worker_sql.write_text(worker_sql)
2025-07-02 06:07:50.027
2025-07-02 06:07:50.036 with fn_worker_log.open(mode='w') as hang_out, fn_worker_err.open(mode='w') as hang_err:
2025-07-02 06:07:50.046
2025-07-02 06:07:50.057 ############################################################################
2025-07-02 06:07:50.067 ###  L A U N C H     W O R K E R    U S I N G     I S Q L,   A S Y N C.  ###
2025-07-02 06:07:50.076 ############################################################################
2025-07-02 06:07:50.083 p_worker = subprocess.Popen([act.vars['isql'], '-i', str(fn_worker_sql),
2025-07-02 06:07:50.094 '-user', act.db.user,
2025-07-02 06:07:50.106 '-password', act.db.password,
2025-07-02 06:07:50.116 act.db.dsn
2025-07-02 06:07:50.127 ],
2025-07-02 06:07:50.139 stdout = hang_out,
2025-07-02 06:07:50.148 stderr = hang_err
2025-07-02 06:07:50.157 )
2025-07-02 06:07:50.164 # NB: when ISQL will establish attach, first record that it must lock is ID = 3 -- see above SQL_TO_BE_RESTARTED
2025-07-02 06:07:50.171 # We must to ensure that this (worker) attachment has been really created and LOCKS this record:
2025-07-02 06:07:50.177 #
2025-07-02 06:07:50.184 wait_for_record_become_locked(tx_monitoring, cur_monitoring, f'update {target_obj} set id=id where id=3', SQL_TAG_THAT_WE_WAITING_FOR)
2025-07-02 06:07:50.189
2025-07-02 06:07:50.195
2025-07-02 06:07:50.202 #########################
2025-07-02 06:07:50.208 ###  L O C K E R - 2  ###
2025-07-02 06:07:50.214 #########################
2025-07-02 06:07:50.220 con_lock_2.execute_immediate( f'update {target_obj} set id=4 where id=2;' )
2025-07-02 06:07:50.226 con_lock_2.commit()
2025-07-02 06:07:50.232 con_lock_2.execute_immediate( f'update {target_obj} set id=id where id=4;' )
2025-07-02 06:07:50.239
2025-07-02 06:07:50.245
2025-07-02 06:07:50.250 #########################
2025-07-02 06:07:50.256 ###  L O C K E R - 1  ###
2025-07-02 06:07:50.263 #########################
2025-07-02 06:07:50.271 con_lock_1.commit() # release record with ID=5 (allow it to be deleted by session-worker)
2025-07-02 06:07:50.281
2025-07-02 06:07:50.292 # We have to WAIT HERE until worker will actually 'catch' just released record with ID = 5.
2025-07-02 06:07:50.300 #
2025-07-02 06:07:50.308 wait_for_record_become_locked(tx_monitoring, cur_monitoring, f'update {target_obj} set id=id where id=5', SQL_TAG_THAT_WE_WAITING_FOR)
2025-07-02 06:07:50.315 # If we come here then it means that record with ID = 5 for sure is locked by WORKER.
2025-07-02 06:07:50.322
2025-07-02 06:07:50.328 # Add record which did not exists when session-worker statement started.
2025-07-02 06:07:50.335 # Add also child record for it, then commit + re-lock just added record:
2025-07-02 06:07:50.342 con_lock_1.execute_immediate( f'insert into {target_obj}(id,x) values(6,6)' )
2025-07-02 06:07:50.350 con_lock_1.execute_immediate( f'insert into detl(id, pid) values(6001, 6)' )
2025-07-02 06:07:50.362 con_lock_1.commit()
2025-07-02 06:07:50.373 con_lock_1.execute_immediate( f'update {target_obj} set id=id where id=6' )
2025-07-02 06:07:50.380
2025-07-02 06:07:50.393 #########################
2025-07-02 06:07:50.405 ###  L O C K E R - 2  ###
2025-07-02 06:07:50.413 #########################
2025-07-02 06:07:50.421 con_lock_2.commit() # release record with ID=4. At this point session-worker will be allowed to delete rows with ID=4 and 5.
2025-07-02 06:07:50.428
2025-07-02 06:07:50.434 # We have to WAIT HERE until worker will actually 'catch' just released record with ID = 4.
2025-07-02 06:07:50.440 #
2025-07-02 06:07:50.453 wait_for_record_become_locked(tx_monitoring, cur_monitoring, f'update {target_obj} set id=id where id=4', SQL_TAG_THAT_WE_WAITING_FOR)
2025-07-02 06:07:50.463 # If we come here then it means that record with ID = 4 for sure is locked by WORKER.
2025-07-02 06:07:50.472
2025-07-02 06:07:50.485 con_lock_1.commit() # release record with ID=6. It is the last record which also must be deleted by session-worker.
2025-07-02 06:07:50.495
2025-07-02 06:07:50.503 # Here we wait for ISQL complete its mission:
2025-07-02 06:07:50.510 p_worker.wait()
2025-07-02 06:07:50.516
2025-07-02 06:07:50.522
2025-07-02 06:07:50.529 #< with act.db.connect()
2025-07-02 06:07:50.534
2025-07-02 06:07:50.543 for g in (fn_worker_log, fn_worker_err):
2025-07-02 06:07:50.553 with g.open() as f:
2025-07-02 06:07:50.562 for line in f:
2025-07-02 06:07:50.571 if line.split():
2025-07-02 06:07:50.584 if g == fn_worker_log:
2025-07-02 06:07:50.596 print(f'checked_mode: {checked_mode}, STDLOG: {line}')
2025-07-02 06:07:50.604 else:
2025-07-02 06:07:50.613 print(f'UNEXPECTED STDERR {line}')
2025-07-02 06:07:50.619
2025-07-02 06:07:50.626 expected_stdout_worker = f"""
2025-07-02 06:07:50.632 checked_mode: {checked_mode}, STDLOG: Records affected: 4
2025-07-02 06:07:50.638
2025-07-02 06:07:50.645 checked_mode: {checked_mode}, STDLOG: Records affected: 0
2025-07-02 06:07:50.651
2025-07-02 06:07:50.656 checked_mode: {checked_mode}, STDLOG:  OLD_ID OP              SNAP_NO_RANK
2025-07-02 06:07:50.662 checked_mode: {checked_mode}, STDLOG: ======= ====== =====================
2025-07-02 06:07:50.667 checked_mode: {checked_mode}, STDLOG:       3 DEL                        1
2025-07-02 06:07:50.672 checked_mode: {checked_mode}, STDLOG:       3 DEL                        2
2025-07-02 06:07:50.678 checked_mode: {checked_mode}, STDLOG:       3 DEL                        3
2025-07-02 06:07:50.688 checked_mode: {checked_mode}, STDLOG:       4 DEL                        3
2025-07-02 06:07:50.694 checked_mode: {checked_mode}, STDLOG:       5 DEL                        3
2025-07-02 06:07:50.699 checked_mode: {checked_mode}, STDLOG:       6 DEL                        3
2025-07-02 06:07:50.707
2025-07-02 06:07:50.718 checked_mode: {checked_mode}, STDLOG: Records affected: 6
2025-07-02 06:07:50.725 """
2025-07-02 06:07:50.732
2025-07-02 06:07:50.738 act.expected_stdout = expected_stdout_worker
2025-07-02 06:07:50.745 act.stdout = capsys.readouterr().out
2025-07-02 06:07:50.757 >               assert act.clean_stdout == act.clean_expected_stdout
2025-07-02 06:07:50.766 E               assert
2025-07-02 06:07:50.772 E                   checked_mode: table, STDLOG: Records affected: 4
2025-07-02 06:07:50.778 E                   checked_mode: table, STDLOG: Records affected: 0
2025-07-02 06:07:50.783 E                   checked_mode: table, STDLOG: OLD_ID OP SNAP_NO_RANK
2025-07-02 06:07:50.789 E                   checked_mode: table, STDLOG:
2025-07-02 06:07:50.794 E                 - checked_mode: table, STDLOG: 3 DEL 1
2025-07-02 06:07:50.807 E                 + checked_mode: table, STDLOG: 3DEL 1
2025-07-02 06:07:50.814 E                 - checked_mode: table, STDLOG: 3 DEL 2
2025-07-02 06:07:50.824 E                 + checked_mode: table, STDLOG: 3DEL 2
2025-07-02 06:07:50.828 E                 - checked_mode: table, STDLOG: 3 DEL 3
2025-07-02 06:07:50.839 E                 + checked_mode: table, STDLOG: 3DEL 3
2025-07-02 06:07:50.845 E                 - checked_mode: table, STDLOG: 4 DEL 3
2025-07-02 06:07:50.859 E                 + checked_mode: table, STDLOG: 4DEL 3
2025-07-02 06:07:50.866 E                 - checked_mode: table, STDLOG: 5 DEL 3
2025-07-02 06:07:50.891 E                 + checked_mode: table, STDLOG: 5DEL 3
2025-07-02 06:07:50.903 E                 - checked_mode: table, STDLOG: 6 DEL 3
2025-07-02 06:07:50.921 E                 + checked_mode: table, STDLOG: 6DEL 3
2025-07-02 06:07:50.927 E                   checked_mode: table, STDLOG: Records affected: 6
2025-07-02 06:07:50.935
2025-07-02 06:07:50.946 tests/functional/transactions/test_read_consist_sttm_restart_on_merge_03.py:411: AssertionError
2025-07-02 06:07:50.957 ---------------------------- Captured stdout setup -----------------------------
2025-07-02 06:07:50.970 Creating db: localhost:/var/tmp/qa_2024/test_12483/test.fdb [page_size=None, sql_dialect=None, charset='NONE', user=SYSDBA, password=masterkey]
3 #text
act = <firebird.qa.plugin.Action pytest object at [hex]>
fn_worker_sql = PosixPath('/var/tmp/qa_2024/test_12483/tmp_worker.sql')
fn_worker_log = PosixPath('/var/tmp/qa_2024/test_12483/tmp_worker.log')
fn_worker_err = PosixPath('/var/tmp/qa_2024/test_12483/tmp_worker.err')
capsys = <_pytest.capture.CaptureFixture pytest object at [hex]>

    @pytest.mark.trace
    @pytest.mark.version('>=4.0.2')
    def test_1(act: Action, fn_worker_sql: Path, fn_worker_log: Path, fn_worker_err: Path, capsys):
        sql_init = (act.files_dir / 'read-consist-sttm-restart-DDL.sql').read_text()
    
        for checked_mode in('table', 'view'):
            target_obj = 'test' if checked_mode == 'table' else 'v_test'
    
            SQL_TO_BE_RESTARTED = f"""
                merge /* {SQL_TAG_THAT_WE_WAITING_FOR} */ into {target_obj} t
                using(select * from {target_obj} where id >= 3 order by id) s on t.id = s.id
                when matched then
                   DELETE
            """
    
            # add rows to test with ID = 2, 3, 5; add several child rows into detl.
            sql_addi='''
                recreate table detl(id int, PID int references test on delete cascade on update cascade);
                commit;
    
                delete from test;
                insert into test(id, x) values(2,2);
                insert into test(id, x) values(3,3);
                insert into test(id, x) values(5,5);
                insert into detl(id, pid) values(2000, 2);
                insert into detl(id, pid) values(2001, 2);
                insert into detl(id, pid) values(2002, 2);
                insert into detl(id, pid) values(3001, 3);
                insert into detl(id, pid) values(5001, 5);
                insert into detl(id, pid) values(5001, 5);
                commit;
            '''
    
            act.isql(switches=['-q'], input = 'recreate table detl(id int);' ) # drop dependencies
            act.isql(switches=['-q'], input = ''.join( (sql_init, sql_addi) ) )
            # ::: NOTE ::: We have to immediately quit if any error raised in prepare phase.
            # See also letter from dimitr, 01-feb-2022 14:46
            assert act.stderr == ''
            act.reset()
    
    
            trace_cfg_items = [
                'time_threshold = 0',
                'log_errors = true',
                'log_statement_start = true',
                'log_statement_finish = true',
            ]
    
            with act.trace(db_events = trace_cfg_items, encoding=locale.getpreferredencoding()):
    
                with act.db.connect() as con_lock_1, act.db.connect() as con_lock_2, act.db.connect() as con_monitoring:
    
                    tpb_monitoring = tpb(isolation=Isolation.READ_COMMITTED_RECORD_VERSION, lock_timeout=0)
                    tx_monitoring = con_monitoring.transaction_manager(tpb_monitoring)
                    cur_monitoring = tx_monitoring.cursor()
    
                    for i,c in enumerate((con_lock_1,con_lock_2)):
                        sttm = f"execute block as begin rdb$set_context('USER_SESSION', 'WHO', 'LOCKER #{i+1}'); end"
                        c.execute_immediate(sttm)
    
                    #########################
                    ###  L O C K E R - 1  ###
                    #########################
    
                    con_lock_1.execute_immediate( f'update {target_obj} set id=id where id=5' )
    
                    worker_sql = f'''
                        set list on;
                        set autoddl off;
                        set term ^;
                        execute block returns (whoami varchar(30)) as
                        begin
                            whoami = 'WORKER'; -- , ATT#' || current_connection;
                            rdb$set_context('USER_SESSION','WHO', whoami);
                            -- suspend;
                        end
                        ^
                        set term ;^
                        commit;
                        SET KEEP_TRAN_PARAMS ON;
                        set transaction read committed read consistency;
                        set list off;
                        set wng off;
                        set count on;
    
                        -- MUST HANG:
                        {SQL_TO_BE_RESTARTED};
    
                        -- check results:
                        -- ###############
                        select id from {target_obj} order by id; -- this will produce output only after all lockers do their commit/rollback
    
                        select v.old_id, v.op, v.snap_no_rank
                        from v_worker_log v
                        where v.op = 'del';
    
                        rollback;
    
                    '''
    
                    fn_worker_sql.write_text(worker_sql)
    
                    with fn_worker_log.open(mode='w') as hang_out, fn_worker_err.open(mode='w') as hang_err:
    
                        ############################################################################
                        ###  L A U N C H     W O R K E R    U S I N G     I S Q L,   A S Y N C.  ###
                        ############################################################################
                        p_worker = subprocess.Popen([act.vars['isql'], '-i', str(fn_worker_sql),
                                                       '-user', act.db.user,
                                                       '-password', act.db.password,
                                                       act.db.dsn
                                                    ],
                                                      stdout = hang_out,
                                                      stderr = hang_err
                                                   )
                        # NB: when ISQL will establish attach, first record that it must lock is ID = 3 -- see above SQL_TO_BE_RESTARTED
                        # We must to ensure that this (worker) attachment has been really created and LOCKS this record:
                        #
                        wait_for_record_become_locked(tx_monitoring, cur_monitoring, f'update {target_obj} set id=id where id=3', SQL_TAG_THAT_WE_WAITING_FOR)
    
    
                        #########################
                        ###  L O C K E R - 2  ###
                        #########################
                        con_lock_2.execute_immediate( f'update {target_obj} set id=4 where id=2;' )
                        con_lock_2.commit()
                        con_lock_2.execute_immediate( f'update {target_obj} set id=id where id=4;' )
    
    
                        #########################
                        ###  L O C K E R - 1  ###
                        #########################
                        con_lock_1.commit() # release record with ID=5 (allow it to be deleted by session-worker)
    
                        # We have to WAIT HERE until worker will actually 'catch' just released record with ID = 5.
                        #
                        wait_for_record_become_locked(tx_monitoring, cur_monitoring, f'update {target_obj} set id=id where id=5', SQL_TAG_THAT_WE_WAITING_FOR)
                        # If we come here then it means that record with ID = 5 for sure is locked by WORKER.
    
                        # Add record which did not exists when session-worker statement started.
                        # Add also child record for it, then commit + re-lock just added record:
                        con_lock_1.execute_immediate( f'insert into {target_obj}(id,x) values(6,6)' )
                        con_lock_1.execute_immediate( f'insert into detl(id, pid) values(6001, 6)' )
                        con_lock_1.commit()
                        con_lock_1.execute_immediate( f'update {target_obj} set id=id where id=6' )
    
                        #########################
                        ###  L O C K E R - 2  ###
                        #########################
                        con_lock_2.commit() # release record with ID=4. At this point session-worker will be allowed to delete rows with ID=4 and 5.
    
                        # We have to WAIT HERE until worker will actually 'catch' just released record with ID = 4.
                        #
                        wait_for_record_become_locked(tx_monitoring, cur_monitoring, f'update {target_obj} set id=id where id=4', SQL_TAG_THAT_WE_WAITING_FOR)
                        # If we come here then it means that record with ID = 4 for sure is locked by WORKER.
    
                        con_lock_1.commit() # release record with ID=6. It is the last record which also must be deleted by session-worker.
    
                        # Here we wait for ISQL complete its mission:
                        p_worker.wait()
    
    
                #< with act.db.connect()
    
                for g in (fn_worker_log, fn_worker_err):
                    with g.open() as f:
                        for line in f:
                            if line.split():
                                if g == fn_worker_log:
                                    print(f'checked_mode: {checked_mode}, STDLOG: {line}')
                                else:
                                    print(f'UNEXPECTED STDERR {line}')
    
                expected_stdout_worker = f"""
                    checked_mode: {checked_mode}, STDLOG: Records affected: 4
    
                    checked_mode: {checked_mode}, STDLOG: Records affected: 0
    
                    checked_mode: {checked_mode}, STDLOG:  OLD_ID OP              SNAP_NO_RANK
                    checked_mode: {checked_mode}, STDLOG: ======= ====== =====================
                    checked_mode: {checked_mode}, STDLOG:       3 DEL                        1
                    checked_mode: {checked_mode}, STDLOG:       3 DEL                        2
                    checked_mode: {checked_mode}, STDLOG:       3 DEL                        3
                    checked_mode: {checked_mode}, STDLOG:       4 DEL                        3
                    checked_mode: {checked_mode}, STDLOG:       5 DEL                        3
                    checked_mode: {checked_mode}, STDLOG:       6 DEL                        3
    
                    checked_mode: {checked_mode}, STDLOG: Records affected: 6
                """
    
                act.expected_stdout = expected_stdout_worker
                act.stdout = capsys.readouterr().out
>               assert act.clean_stdout == act.clean_expected_stdout
E               assert   
E                   checked_mode: table, STDLOG: Records affected: 4
E                   checked_mode: table, STDLOG: Records affected: 0
E                   checked_mode: table, STDLOG: OLD_ID OP SNAP_NO_RANK
E                   checked_mode: table, STDLOG:
E                 - checked_mode: table, STDLOG: 3 DEL 1
E                 + checked_mode: table, STDLOG: 3DEL 1
E                 - checked_mode: table, STDLOG: 3 DEL 2
E                 + checked_mode: table, STDLOG: 3DEL 2
E                 - checked_mode: table, STDLOG: 3 DEL 3
E                 + checked_mode: table, STDLOG: 3DEL 3
E                 - checked_mode: table, STDLOG: 4 DEL 3
E                 + checked_mode: table, STDLOG: 4DEL 3
E                 - checked_mode: table, STDLOG: 5 DEL 3
E                 + checked_mode: table, STDLOG: 5DEL 3
E                 - checked_mode: table, STDLOG: 6 DEL 3
E                 + checked_mode: table, STDLOG: 6DEL 3
E                   checked_mode: table, STDLOG: Records affected: 6

tests/functional/transactions/test_read_consist_sttm_restart_on_merge_03.py:411: AssertionError
Full history of outcomes and elapsed time, ms:
NN SNAP_INFO CS_outcome SS_outcome CS_run_time SS_run_time CS_run_beg CS_run_end SS_run_beg SS_run_end
1 6.0.0.889 2025.07.01 969ac F F 4177 3309 2025.07.02 02:43:23.350 2025.07.02 02:43:27.527 2025.07.01 23:49:38.437 2025.07.01 23:49:41.746
2 6.0.0.884 2025.06.30 f7e5f F F 3987 3163 2025.07.01 02:42:08.801 2025.07.01 02:42:12.788 2025.06.30 23:57:58.426 2025.06.30 23:58:01.589
3 6.0.0.881 2025.06.27 7035d P P 7718 6703 2025.06.30 02:35:39.221 2025.06.30 02:35:46.939 2025.06.29 23:48:13.023 2025.06.29 23:48:19.726
4 6.0.0.877 2025.06.26 8e38f P P 7622 7045 2025.06.27 02:12:36.399 2025.06.27 02:12:44.021 2025.06.26 23:37:25.357 2025.06.26 23:37:32.402
5 6.0.0.876 2025.06.25 b1bec P P 7588 7222 2025.06.26 02:16:27.920 2025.06.26 02:16:35.508 2025.06.25 23:39:22.490 2025.06.25 23:39:29.712
6 6.0.0.863 2025.06.24 c3c20 P P 7419 6184 2025.06.25 02:16:42.029 2025.06.25 02:16:49.448 2025.06.24 23:39:06.778 2025.06.24 23:39:12.962
7 6.0.0.858 2025.06.23 8d6f7 P P 7684 6223 2025.06.24 02:16:46.562 2025.06.24 02:16:54.246 2025.06.23 23:38:59.243 2025.06.23 23:39:05.466
8 6.0.0.849 2025.06.20 7b79c P P 7625 6172 2025.06.21 02:28:31.945 2025.06.21 02:28:39.570 2025.06.20 23:49:03.106 2025.06.20 23:49:09.278
9 6.0.0.848 2025.06.19 c483c P P 7603 6213 2025.06.20 02:24:54.419 2025.06.20 02:25:02.022 2025.06.19 23:45:21.250 2025.06.19 23:45:27.463
10 6.0.0.845 2025.06.18 22b12 P P 7745 7032 2025.06.19 02:33:38.383 2025.06.19 02:33:46.128 2025.06.18 23:49:30.407 2025.06.18 23:49:37.439
11 6.0.0.843 2025.06.16 995f4 P P 7558 6482 2025.06.18 02:32:03.231 2025.06.18 02:32:10.789 2025.06.17 23:50:42.964 2025.06.17 23:50:49.446
12 6.0.0.840 2025.06.14 29bca P P 7575 6652 2025.06.16 02:23:46.150 2025.06.16 02:23:53.725 2025.06.15 23:42:50.990 2025.06.15 23:42:57.642
13 6.0.0.838 2025.06.13 0e28a P P 7705 6220 2025.06.14 02:38:03.461 2025.06.14 02:38:11.166 2025.06.13 23:51:34.106 2025.06.13 23:51:40.326
14 6.0.0.835 2025.06.12 2cf29 P P 7558 7243 2025.06.13 02:36:27.044 2025.06.13 02:36:34.602 2025.06.12 23:54:16.299 2025.06.12 23:54:23.542
15 6.0.0.834 2025.06.11 e889f P P 7684 6217 2025.06.12 02:32:34.710 2025.06.12 02:32:42.394 2025.06.11 23:50:47.181 2025.06.11 23:50:53.398
16 6.0.0.800 2025.06.10 1f226 P P 7579 7209 2025.06.11 01:04:21.005 2025.06.11 01:04:28.584 2025.06.10 22:52:43.238 2025.06.10 22:52:50.447
17 6.0.0.799 2025.06.07 be644 P P 8833 7139 2025.06.10 01:06:48.207 2025.06.10 01:06:57.040 2025.06.09 22:52:07.670 2025.06.09 22:52:14.809
18 6.0.0.797 2025.06.06 303e8 P P 7694 7280 2025.06.07 01:10:59.767 2025.06.07 01:11:07.461 2025.06.06 22:52:00.598 2025.06.06 22:52:07.878
19 6.0.0.795 2025.05.29 7a71a P P 7721 7249 2025.06.06 01:05:08.465 2025.06.06 01:05:16.186 2025.06.05 22:50:18.853 2025.06.05 22:50:26.102
20 6.0.0.792 2025.05.28 b4327 P P 7756 7239 2025.05.29 01:20:27.562 2025.05.29 01:20:35.318 2025.05.28 22:54:41.424 2025.05.28 22:54:48.663
21 6.0.0.791 2025.05.27 02db8 P P 7897 7356 2025.05.28 01:18:16.169 2025.05.28 01:18:24.066 2025.05.27 22:53:51.030 2025.05.27 22:53:58.386
22 6.0.0.789 2025.05.21 64051 P P 7883 7221 2025.05.25 01:10:18.600 2025.05.25 01:10:26.483 2025.05.24 22:52:26.434 2025.05.24 22:52:33.655
23 6.0.0.787 2025.05.20 230ad P P 7786 7101 2025.05.21 01:07:26.984 2025.05.21 01:07:34.770 2025.05.20 22:50:16.206 2025.05.20 22:50:23.307
24 6.0.0.783 2025.05.12 37320 P P 7966 6792 2025.05.19 12:38:43.438 2025.05.19 12:38:51.404 2025.05.19 10:38:02.650 2025.05.19 10:38:09.442
25 6.0.0.779 2025.05.11 136fa P P 7880 7249 2025.05.12 01:02:44.523 2025.05.12 01:02:52.403 2025.05.11 22:48:55.474 2025.05.11 22:49:02.723
26 6.0.0.778 2025.05.07 d735e P P 7914 6987 2025.05.08 01:03:23.025 2025.05.08 01:03:30.939 2025.05.07 22:47:46.532 2025.05.07 22:47:53.519
27 6.0.0.776 2025.05.06 007cd P P 7622 7079 2025.05.07 00:59:14.865 2025.05.07 00:59:22.487 2025.05.06 22:48:07.628 2025.05.06 22:48:14.707
28 6.0.0.770 2025.05.05 82c4a P P 7807 7121 2025.05.06 00:57:24.497 2025.05.06 00:57:32.304 2025.05.05 22:46:55.638 2025.05.05 22:47:02.759
29 6.0.0.767 2025.05.01 cdd29 P P 7821 7327 2025.05.02 00:51:44.573 2025.05.02 00:51:52.394 2025.05.01 22:45:47.378 2025.05.01 22:45:54.705
30 6.0.0.762 2025.04.30 5cb15 P P 7751 7040 2025.05.01 00:50:09.550 2025.05.01 00:50:17.301 2025.04.30 22:44:12.521 2025.04.30 22:44:19.561
31 6.0.0.755 2025.04.29 739c6 P P 7726 7324 2025.04.30 00:54:21.386 2025.04.30 00:54:29.112 2025.04.29 22:45:53.898 2025.04.29 22:46:01.222
32 6.0.0.753 2025.04.27 29ab3 P P 7759 7416 2025.04.28 00:56:26.063 2025.04.28 00:56:33.822 2025.04.27 22:44:50.971 2025.04.27 22:44:58.387
33 6.0.0.745 2025.04.21 78ad8 P P 7763 7387 2025.04.26 00:51:29.980 2025.04.26 00:51:37.743 2025.04.25 22:46:08.657 2025.04.25 22:46:16.044
34 6.0.0.744 2025.04.19 e883a P P 7805 7212 2025.04.20 00:53:59.477 2025.04.20 00:54:07.282 2025.04.19 22:46:52.974 2025.04.19 22:47:00.186
35 6.0.0.742 2025.04.17 abc3b P P 7835 7212 2025.04.19 00:56:28.331 2025.04.19 00:56:36.166 2025.04.18 22:46:55.314 2025.04.18 22:47:02.526
36 6.0.0.737 2025.04.16 fe52b P P 7821 7360 2025.04.17 00:52:33.076 2025.04.17 00:52:40.897 2025.04.16 22:47:08.146 2025.04.16 22:47:15.506
37 6.0.0.736 2025.04.14 3e6be P P 7671 6159 2025.04.15 00:27:56.738 2025.04.15 00:28:04.409 2025.04.14 22:36:07.870 2025.04.14 22:36:14.029
38 6.0.0.735 2025.04.13 6635c P P 7754 7436 2025.04.14 00:34:28.626 2025.04.14 00:34:36.380 2025.04.13 22:37:19.552 2025.04.13 22:37:26.988
39 6.0.0.734 2025.04.12 12f3f P P 7718 6294 2025.04.13 00:31:43.984 2025.04.13 00:31:51.702 2025.04.12 22:36:27.541 2025.04.12 22:36:33.835
40 6.0.0.730 2025.04.11 240b8 P P 7830 6184 2025.04.12 00:34:32.607 2025.04.12 00:34:40.437 2025.04.11 22:36:44.334 2025.04.11 22:36:50.518
41 6.0.0.726 2025.04.10 d79c6 P P 7779 6257 2025.04.11 00:34:37.692 2025.04.11 00:34:45.471 2025.04.10 22:36:46.001 2025.04.10 22:36:52.258
42 6.0.0.725 2025.04.09 a2b05 P P 7660 6692 2025.04.10 00:34:25.212 2025.04.10 00:34:32.872 2025.04.09 22:36:55.663 2025.04.09 22:37:02.355
43 6.0.0.722 2025.04.08 a8b86 P P 7770 7391 2025.04.09 00:49:01.537 2025.04.09 00:49:09.307 2025.04.08 22:44:51.662 2025.04.08 22:44:59.053
44 6.0.0.719 2025.04.06 90fd9 P P 7451 6885 2025.04.07 00:48:35.849 2025.04.07 00:48:43.300 2025.04.06 22:42:39.865 2025.04.06 22:42:46.750
45 6.0.0.717 2025.04.04 53d70 P P 7891 6830 2025.04.05 00:44:05.565 2025.04.05 00:44:13.456 2025.04.04 22:41:43.122 2025.04.04 22:41:49.952
46 6.0.0.716 2025.04.03 fc636 P P 7916 7930 2025.04.04 00:44:55.356 2025.04.04 00:45:03.272 2025.04.03 22:43:42.368 2025.04.03 22:43:50.298
47 6.0.0.715 2025.04.02 907ed P P 7972 7348 2025.04.03 00:47:49.127 2025.04.03 00:47:57.099 2025.04.02 22:43:41.174 2025.04.02 22:43:48.522
48 6.0.0.710 2025.04.01 40651 P P 7853 7176 2025.04.02 00:44:55.828 2025.04.02 00:45:03.681 2025.04.01 22:42:28.078 2025.04.01 22:42:35.254
49 6.0.0.708 2025.03.31 cb069 P P 7893 7042 2025.04.01 00:33:43.152 2025.04.01 00:33:51.045 2025.03.31 22:37:36.895 2025.03.31 22:37:43.937
50 6.0.0.707 2025.03.28 4bd4f P P 7890 7460 2025.03.31 00:37:08.263 2025.03.31 00:37:16.153 2025.03.30 22:37:37.838 2025.03.30 22:37:45.298
51 6.0.0.698 2025.03.26 d72a7 P P 8908 7648 2025.03.28 00:56:19.358 2025.03.28 00:56:28.266 2025.03.27 22:45:42.619 2025.03.27 22:45:50.267
52 6.0.0.693 2025.03.24 0b559 P P 7464 7186 2025.03.25 00:46:21.441 2025.03.25 00:46:28.905 2025.03.24 22:40:55.998 2025.03.24 22:41:03.184
53 6.0.0.687 2025.03.22 730aa P P 7988 7329 2025.03.24 00:58:28.641 2025.03.24 00:58:36.629 2025.03.23 22:48:40.585 2025.03.23 22:48:47.914
54 6.0.0.686 2025.03.20 71bf6 P P 7957 7505 2025.03.21 01:02:38.271 2025.03.21 01:02:46.228 2025.03.20 22:52:19.966 2025.03.20 22:52:27.471
55 6.0.0.685 2025.03.19 a8577 P P 9660 7698 2025.03.20 01:11:43.487 2025.03.20 01:11:53.147 2025.03.19 22:49:59.499 2025.03.19 22:50:07.197
56 6.0.0.680 2025.03.18 90d29 P P 7473 6541 2025.03.19 11:24:39.096 2025.03.19 11:24:46.569 2025.03.19 09:33:55.552 2025.03.19 09:34:02.093
57 6.0.0.677 2025.03.16 c0a60 P P 7617 7008 2025.03.17 00:51:12.511 2025.03.17 00:51:20.128 2025.03.16 22:44:07.362 2025.03.16 22:44:14.370
58 6.0.0.676 2025.03.15 3034f P P 7478 6476 2025.03.16 16:24:08.404 2025.03.16 16:24:15.882 2025.03.16 14:35:16.238 2025.03.16 14:35:22.714
59 6.0.0.673 2025.03.13 40f5b P P 7094 6858 2025.03.14 00:47:55.248 2025.03.14 00:48:02.342 2025.03.13 22:43:27.045 2025.03.13 22:43:33.903
60 6.0.0.671 2025.03.12 a4fff P P 7595 7186 2025.03.13 00:51:11.687 2025.03.13 00:51:19.282 2025.03.12 22:46:28.318 2025.03.12 22:46:35.504
61 6.0.0.663 2025.03.11 daad2 P P 7401 7206 2025.03.12 00:51:53.709 2025.03.12 00:52:01.110 2025.03.11 22:45:22.377 2025.03.11 22:45:29.583
62 6.0.0.661 2025.03.07 b9869 P P 7348 6667 2025.03.11 00:26:52.765 2025.03.11 00:27:00.113 2025.03.10 22:35:28.377 2025.03.10 22:35:35.044
63 6.0.0.660 2025.03.04 a6700 P P 7587 6693 2025.03.07 00:37:19.621 2025.03.07 00:37:27.208 2025.03.06 22:40:29.629 2025.03.06 22:40:36.322
64 6.0.0.658 2025.03.03 f15f8 P P 7448 5994 2025.03.04 00:30:37.846 2025.03.04 00:30:45.294 2025.03.03 22:36:10.924 2025.03.03 22:36:16.918
65 6.0.0.656 2025.02.27 25fb4 P P 7561 7364 2025.03.03 01:04:57.994 2025.03.03 01:05:05.555 2025.03.02 22:48:11.095 2025.03.02 22:48:18.459
66 6.0.0.655 2025.02.25 6e3e0 P P 8740 6462 2025.02.27 00:34:44.974 2025.02.27 00:34:53.714 2025.02.26 22:37:32.004 2025.02.26 22:37:38.466
67 6.0.0.654 2025.02.24 b7141 P P 7576 6030 2025.02.25 00:37:59.229 2025.02.25 00:38:06.805 2025.02.24 22:39:18.517 2025.02.24 22:39:24.547
68 6.0.0.652 2025.02.22 22662 P P 7608 6529 2025.02.24 07:58:01.786 2025.02.24 07:58:09.394 2025.02.24 00:52:19.611 2025.02.24 00:52:26.140
69 6.0.0.647 2025.02.21 9fccb P P 7478 7233 2025.02.22 00:40:14.020 2025.02.22 00:40:21.498 2025.02.21 22:41:28.388 2025.02.21 22:41:35.621
70 6.0.0.640 2025.02.19 9b8ac P P 8790 6157 2025.02.20 00:34:49.008 2025.02.20 00:34:57.798 2025.02.19 22:37:39.366 2025.02.19 22:37:45.523
71 6.0.0.639 2025.02.18 201a4 P P 7542 6939 2025.02.19 00:29:06.301 2025.02.19 00:29:13.843 2025.02.18 22:35:41.145 2025.02.18 22:35:48.084
72 6.0.0.637 2025.02.12 6d0f5 P P 8731 6096 2025.02.14 00:47:58.940 2025.02.14 00:48:07.671 2025.02.13 22:43:40.739 2025.02.13 22:43:46.835
73 6.0.0.636 2025.02.11 0424f P P 7039 6043 2025.02.12 00:43:25.270 2025.02.12 00:43:32.309 2025.02.11 22:42:51.191 2025.02.11 22:42:57.234
74 6.0.0.635 2025.02.10 f640f P P 7398 6781 2025.02.11 00:42:19.390 2025.02.11 00:42:26.788 2025.02.10 22:42:39.435 2025.02.10 22:42:46.216
75 6.0.0.629 2025.02.07 194f9 P P 7431 6041 2025.02.08 00:42:18.054 2025.02.08 00:42:25.485 2025.02.07 22:41:43.249 2025.02.07 22:41:49.290
76 6.0.0.628 2025.02.06 859d5 P P 7440 7240 2025.02.07 01:00:57.421 2025.02.07 01:01:04.861 2025.02.06 22:48:14.334 2025.02.06 22:48:21.574
77 6.0.0.621 2025.02.05 34fe7 P P 7530 7044 2025.02.06 00:55:58.373 2025.02.06 00:56:05.903 2025.02.05 22:48:55.302 2025.02.05 22:49:02.346
78 6.0.0.609 2025.02.04 76d57 P P 7441 6729 2025.02.05 00:50:41.849 2025.02.05 00:50:49.290 2025.02.04 22:44:35.038 2025.02.04 22:44:41.767
79 6.0.0.607 2025.02.03 1985b P P 7547 6991 2025.02.04 00:48:17.325 2025.02.04 00:48:24.872 2025.02.03 22:45:33.287 2025.02.03 22:45:40.278
80 6.0.0.601 2025.02.01 6af07 P P 7791 6152 2025.02.02 00:38:06.039 2025.02.02 00:38:13.830 2025.02.01 22:41:10.026 2025.02.01 22:41:16.178
81 6.0.0.600 2025.01.27 188de P P 9061 6073 2025.01.28 00:47:27.433 2025.01.28 00:47:36.494 2025.01.27 22:43:32.722 2025.01.27 22:43:38.795
82 6.0.0.599 2025.01.25 ba588 P P 7070 6695 2025.01.26 00:46:00.974 2025.01.26 00:46:08.044 2025.01.25 22:44:19.456 2025.01.25 22:44:26.151
83 6.0.0.598 2025.01.23 ddbc3 P P 6975 6111 2025.01.25 00:47:14.012 2025.01.25 00:47:20.987 2025.01.24 22:43:16.120 2025.01.24 22:43:22.231
84 6.0.0.595 2025.01.22 e62f3 P P 6965 6798 2025.01.23 00:39:10.516 2025.01.23 00:39:17.481 2025.01.22 22:38:20.413 2025.01.22 22:38:27.211
85 6.0.0.594 2025.01.21 47fb6 P P 8547 7258 2025.01.22 00:32:40.422 2025.01.22 00:32:48.969 2025.01.21 22:38:11.892 2025.01.21 22:38:19.150
86 6.0.0.590 2025.01.20 9dc1e P P 8616 6895 2025.01.21 00:40:53.818 2025.01.21 00:41:02.434 2025.01.20 22:42:53.230 2025.01.20 22:43:00.125
87 6.0.0.588 2025.01.19 b1c4e P P 8983 7328 2025.01.20 00:39:13.455 2025.01.20 00:39:22.438 2025.01.19 22:40:13.134 2025.01.19 22:40:20.462
88 6.0.0.587 2025.01.18 63e6e P P 7909 6244 2025.01.19 00:43:16.610 2025.01.19 00:43:24.519 2025.01.18 22:42:09.906 2025.01.18 22:42:16.150
89 6.0.0.585 2025.01.16 2d6bb P P 7394 7007 2025.01.18 00:36:09.105 2025.01.18 00:36:16.499 2025.01.17 22:38:45.270 2025.01.17 22:38:52.277
90 6.0.0.584 2025.01.15 a0aa2 P P 7641 6467 2025.01.16 00:40:58.719 2025.01.16 00:41:06.360 2025.01.15 22:41:49.901 2025.01.15 22:41:56.368
91 6.0.0.581 2025.01.14 21e9e P P 9101 6151 2025.01.15 00:41:23.289 2025.01.15 00:41:32.390 2025.01.14 22:40:43.131 2025.01.14 22:40:49.282
92 6.0.0.577 2025.01.13 7e293 P P 7396 7061 2025.01.14 00:43:36.069 2025.01.14 00:43:43.465 2025.01.13 22:41:19.122 2025.01.13 22:41:26.183
93 6.0.0.576 2025.01.12 05898 P P 8772 6515 2025.01.13 00:37:26.506 2025.01.13 00:37:35.278 2025.01.12 22:39:04.859 2025.01.12 22:39:11.374
94 6.0.0.573 2025.01.10 c20f3 P P 7369 6038 2025.01.11 00:39:31.864 2025.01.11 00:39:39.233 2025.01.10 22:40:03.808 2025.01.10 22:40:09.846
95 6.0.0.571 2024.12.31 81bba P P 8500 6652 2025.01.01 00:12:23.539 2025.01.01 00:12:32.039 2024.12.31 22:18:35.451 2024.12.31 22:18:42.103
96 6.0.0.570 2024.12.30 c3c8d P P 7365 6717 2024.12.31 00:13:07.426 2024.12.31 00:13:14.791 2024.12.30 22:18:27.863 2024.12.30 22:18:34.580
97 6.0.0.565 2024.12.28 5fc59 P P 7627 5824 2024.12.30 12:46:02.734 2024.12.30 12:46:10.361 2024.12.30 11:26:10.436 2024.12.30 11:26:16.260
98 6.0.0.564 2024.12.26 12514 P P 7823 6666 2024.12.27 00:14:17.437 2024.12.27 00:14:25.260 2024.12.26 22:18:37.151 2024.12.26 22:18:43.817
99 6.0.0.560 2024.12.25 fa83e P P 6583 6832 2024.12.26 00:06:46.452 2024.12.26 00:06:53.035 2024.12.25 22:18:19.522 2024.12.25 22:18:26.354
100 6.0.0.559 2024.12.23 cc800 P P 8147 6583 2024.12.25 00:07:52.895 2024.12.25 00:08:01.042 2024.12.24 22:19:10.584 2024.12.24 22:19:17.167
101 6.0.0.556 2024.12.22 a0404 P P 7701 6932 2024.12.23 00:13:53.679 2024.12.23 00:14:01.380 2024.12.22 22:18:23.403 2024.12.22 22:18:30.335
102 6.0.0.555 2024.12.19 6990a P P 7605 5811 2024.12.21 13:21:29.145 2024.12.21 13:21:36.750 2024.12.21 12:01:40.790 2024.12.21 12:01:46.601
103 6.0.0.553 2024.12.17 d1f8a P P 6746 6742 2024.12.18 00:08:44.142 2024.12.18 00:08:50.888 2024.12.17 22:19:19.318 2024.12.17 22:19:26.060
104 6.0.0.552 2024.12.11 85e25 P P 7482 6786 2024.12.16 00:12:58.438 2024.12.16 00:13:05.920 2024.12.15 22:18:54.923 2024.12.15 22:19:01.709
105 6.0.0.550 2024.12.10 b37ac P P 8476 6744 2024.12.11 00:07:19.055 2024.12.11 00:07:27.531 2024.12.10 22:20:53.055 2024.12.10 22:20:59.799
106 6.0.0.548 2024.12.08 2cc77 P P 7667 6561 2024.12.09 00:02:09.274 2024.12.09 00:02:16.941 2024.12.08 22:15:53.430 2024.12.08 22:15:59.991
107 6.0.0.544 2024.12.05 96943 P P 7414 6691 2024.12.06 00:05:34.293 2024.12.06 00:05:41.707 2024.12.05 22:20:42.392 2024.12.05 22:20:49.083
108 6.0.0.543 2024.12.03 30b77 P P 6812 6893 2024.12.04 00:05:20.179 2024.12.04 00:05:26.991 2024.12.03 22:18:51.127 2024.12.03 22:18:58.020
109 6.0.0.540 2024.12.02 4a1f4 P P 7414 6244 2024.12.03 00:01:37.314 2024.12.03 00:01:44.728 2024.12.02 22:15:55.735 2024.12.02 22:16:01.979
110 6.0.0.539 2024.11.28 1f283 P P 7871 6794 2024.11.30 00:14:38.907 2024.11.30 00:14:46.778 2024.11.29 22:18:14.053 2024.11.29 22:18:20.847
111 6.0.0.535 2024.11.26 77b95 P P 8060 6700 2024.11.26 23:57:47.603 2024.11.26 23:57:55.663 2024.11.26 22:15:11.083 2024.11.26 22:15:17.783
112 6.0.0.534 2024.11.25 e9584 P P 6551 6438 2024.11.25 23:59:06.849 2024.11.25 23:59:13.400 2024.11.25 22:16:07.313 2024.11.25 22:16:13.751
113 6.0.0.533 2024.11.17 933ac P P 6736 5795 2024.11.22 10:01:51.219 2024.11.22 10:01:57.955 2024.11.22 08:44:27.779 2024.11.22 08:44:33.574
114 6.0.0.532 2024.11.16 9e263 P P 8172 5861 2024.11.16 23:48:54.479 2024.11.16 23:49:02.651 2024.11.16 22:14:31.068 2024.11.16 22:14:36.929
115 6.0.0.530 2024.11.15 49804 P P 6491 6039 2024.11.16 01:55:54.446 2024.11.16 01:56:00.937 2024.11.16 00:15:05.651 2024.11.16 00:15:11.690
116 6.0.0.528 2024.11.14 9625b P P 7191 6391 2024.11.15 01:59:33.103 2024.11.15 01:59:40.294 2024.11.15 00:15:59.383 2024.11.15 00:16:05.774
117 6.0.0.526 2024.11.12 65b80 P P 8129 6364 2024.11.14 01:59:15.570 2024.11.14 01:59:23.699 2024.11.14 00:15:53.102 2024.11.14 00:15:59.466
118 6.0.0.523 2024.11.08 8ca23 P P 7949 6686 2024.11.11 01:55:29.483 2024.11.11 01:55:37.432 2024.11.11 00:14:22.342 2024.11.11 00:14:29.028
119 6.0.0.520 2024.11.07 4eefa F F 4142 3678 2024.11.08 01:50:51.487 2024.11.08 01:50:55.629 2024.11.08 00:12:53.243 2024.11.08 00:12:56.921
120 6.0.0.516 2024.11.04 b0c36 P P 6552 5869 2024.11.05 01:51:04.719 2024.11.05 01:51:11.271 2024.11.05 00:13:35.119 2024.11.05 00:13:40.988
121 6.0.0.515 2024.10.30 d53f3 P P 7504 5676 2024.11.04 01:53:34.596 2024.11.04 01:53:42.100 2024.11.04 00:14:05.090 2024.11.04 00:14:10.766
122 6.0.0.512 2024.10.29 833ef P P 6374 6282 2024.10.30 01:56:51.561 2024.10.30 01:56:57.935 2024.10.30 00:15:38.794 2024.10.30 00:15:45.076
123 6.0.0.511 2024.10.26 c4bc9 P P 6921 6267 2024.10.29 01:55:12.508 2024.10.29 01:55:19.429 2024.10.29 00:15:25.217 2024.10.29 00:15:31.484
124 6.0.0.509 2024.10.25 3aedb P P 7645 6528 2024.10.26 02:06:47.279 2024.10.26 02:06:54.924 2024.10.26 00:19:33.189 2024.10.26 00:19:39.717
125 6.0.0.508 2024.10.24 a8f5b P P 6751 6374 2024.10.25 02:00:28.036 2024.10.25 02:00:34.787 2024.10.25 00:16:22.615 2024.10.25 00:16:28.989
126 6.0.0.502 2024.10.22 6bfd7 P P 7665 6365 2024.10.23 02:00:25.075 2024.10.23 02:00:32.740 2024.10.23 00:16:10.944 2024.10.23 00:16:17.309
127 6.0.0.500 2024.10.21 be565 P P 6960 6096 2024.10.22 18:04:58.065 2024.10.22 18:05:05.025 2024.10.22 16:45:27.379 2024.10.22 16:45:33.475
128 6.0.0.499 2024.10.19 6214b P P 6628 6379 2024.10.20 01:59:59.321 2024.10.20 02:00:05.949 2024.10.20 00:17:07.219 2024.10.20 00:17:13.598
129 6.0.0.498 2024.10.18 591a7 P P 8160 6361 2024.10.19 01:58:30.665 2024.10.19 01:58:38.825 2024.10.19 00:15:37.562 2024.10.19 00:15:43.923
130 6.0.0.494 2024.10.17 cf5a4 P P 6533 6390 2024.10.18 01:59:21.916 2024.10.18 01:59:28.449 2024.10.18 00:16:49.267 2024.10.18 00:16:55.657
131 6.0.0.491 2024.10.14 dc5fb P P 7904 5866 2024.10.15 01:55:44.669 2024.10.15 01:55:52.573 2024.10.15 00:14:28.529 2024.10.15 00:14:34.395
132 6.0.0.489 2024.10.11 2ba59 P P 8232 6541 2024.10.12 02:03:46.657 2024.10.12 02:03:54.889 2024.10.12 00:17:05.261 2024.10.12 00:17:11.802
133 6.0.0.488 2024.10.09 1c93e P P 8603 6385 2024.10.10 02:12:34.138 2024.10.10 02:12:42.741 2024.10.10 00:21:40.489 2024.10.10 00:21:46.874
134 6.0.0.487 2024.10.06 065a3 P P 6844 6460 2024.10.07 02:11:36.954 2024.10.07 02:11:43.798 2024.10.07 00:21:15.520 2024.10.07 00:21:21.980
135 6.0.0.485 2024.10.04 e95c1 P P 8552 6560 2024.10.05 02:11:54.957 2024.10.05 02:12:03.509 2024.10.05 00:22:12.133 2024.10.05 00:22:18.693
136 6.0.0.483 2024.10.02 5e5ae P P 6867 6553 2024.10.03 02:07:41.699 2024.10.03 02:07:48.566 2024.10.03 00:20:35.970 2024.10.03 00:20:42.523
137 6.0.0.478 2024.09.30 b5010 P P 6983 6592 2024.10.01 02:02:17.580 2024.10.01 02:02:24.563 2024.10.01 00:19:27.284 2024.10.01 00:19:33.876
138 6.0.0.474 2024.09.26 e4efb P P 7001 6467 2024.09.30 02:02:28.873 2024.09.30 02:02:35.874 2024.09.30 00:17:01.861 2024.09.30 00:17:08.328
139 6.0.0.471 2024.09.24 01b51 P P 6980 6609 2024.09.26 00:07:18.285 2024.09.26 00:07:25.265 2024.09.25 22:18:31.445 2024.09.25 22:18:38.054
140 6.0.0.470 2024.09.23 77cc0 P P 6865 6347 2024.09.24 00:05:03.756 2024.09.24 00:05:10.621 2024.09.23 22:18:29.250 2024.09.23 22:18:35.597
141 6.0.0.467 2024.09.21 ea0b8 P P 7723 6682 2024.09.23 00:03:11.317 2024.09.23 00:03:19.040 2024.09.22 22:17:23.754 2024.09.22 22:17:30.436
142 6.0.0.466 2024.09.20 32dc6 P P 6801 6427 2024.09.21 00:01:27.031 2024.09.21 00:01:33.832 2024.09.20 22:16:47.513 2024.09.20 22:16:53.940
143 6.0.0.461 2024.09.17 2c895 P P 7863 6454 2024.09.18 00:40:27.397 2024.09.18 00:40:35.260 2024.09.17 22:40:56.870 2024.09.17 22:41:03.324
144 6.0.0.460 2024.09.11 3c253 P P 8500 6548 2024.09.17 00:41:05.131 2024.09.17 00:41:13.631 2024.09.16 22:42:01.464 2024.09.16 22:42:08.012
145 6.0.0.457 2024.09.09 fdc6f P P 8172 6891 2024.09.10 01:06:52.006 2024.09.10 01:07:00.178 2024.09.09 22:52:47.413 2024.09.09 22:52:54.304
146 6.0.0.455 2024.09.07 500d8 P P 7994 6748 2024.09.08 01:02:02.252 2024.09.08 01:02:10.246 2024.09.07 22:50:47.928 2024.09.07 22:50:54.676
147 6.0.0.454 2024.09.05 4d70f P P 8965 6618 2024.09.06 00:44:22.358 2024.09.06 00:44:31.323 2024.09.05 22:43:43.947 2024.09.05 22:43:50.565
148 6.0.0.452 2024.09.04 9ff9c P P 8801 6288 2024.09.05 00:41:42.853 2024.09.05 00:41:51.654 2024.09.04 22:42:27.832 2024.09.04 22:42:34.120
149 6.0.0.450 2024.09.02 27124 P P 8780 6334 2024.09.04 01:56:20.398 2024.09.04 01:56:29.178 2024.09.03 23:17:05.750 2024.09.03 23:17:12.084
150 6.0.0.447 2024.09.01 056ec P P 10228 6635 2024.09.02 01:13:27.597 2024.09.02 01:13:37.825 2024.09.01 22:49:40.713 2024.09.01 22:49:47.348
151 6.0.0.446 2024.08.30 fe1b2 P P 11055 7432 2024.09.01 01:11:29.445 2024.09.01 01:11:40.500 2024.08.31 22:57:28.423 2024.08.31 22:57:35.855
152 6.0.0.444 2024.08.28 785d4 P P 7551 7850 2024.08.30 01:27:45.836 2024.08.30 01:27:53.387 2024.08.29 23:09:41.783 2024.08.29 23:09:49.633
153 6.0.0.442 2024.08.21 4a68f P P 9720 6722 2024.08.28 03:39:10.169 2024.08.28 03:39:19.889 2024.08.28 00:05:36.844 2024.08.28 00:05:43.566
154 6.0.0.441 2024.08.20 75042 P P 9134 6402 2024.08.21 00:55:42.877 2024.08.21 00:55:52.011 2024.08.20 22:46:41.679 2024.08.20 22:46:48.081
155 6.0.0.438 2024.08.16 088b5 P P 8354 6233 2024.08.19 00:04:30.337 2024.08.19 00:04:38.691 2024.08.18 22:23:04.637 2024.08.18 22:23:10.870
156 6.0.0.437 2024.08.14 3c88b P P 7043 6407 2024.08.16 00:01:16.530 2024.08.16 00:01:23.573 2024.08.15 22:22:11.508 2024.08.15 22:22:17.915
157 6.0.0.432 2024.08.11 e82ac P P 6502 6575 2024.08.13 00:00:31.711 2024.08.13 00:00:38.213 2024.08.12 22:20:54.138 2024.08.12 22:21:00.713
158 6.0.0.431 2024.08.09 de5a7 P P 6763 6302 2024.08.10 00:00:39.173 2024.08.10 00:00:45.936 2024.08.09 22:21:21.240 2024.08.09 22:21:27.542
159 6.0.0.428 2024.08.08 9191b P P 6620 6429 2024.08.09 00:00:29.524 2024.08.09 00:00:36.144 2024.08.08 22:20:39.072 2024.08.08 22:20:45.501
160 6.0.0.423 2024.08.07 33b41 P P 7336 6509 2024.08.08 09:48:30.186 2024.08.08 09:48:37.522 2024.08.08 08:27:04.550 2024.08.08 08:27:11.059
161 6.0.0.421 2024.08.06 ed60d P P 7480 5861 2024.08.06 23:42:39.924 2024.08.06 23:42:47.404 2024.08.06 22:13:31.027 2024.08.06 22:13:36.888
162 6.0.0.419 2024.08.05 3505a P P 6728 5633 2024.08.05 23:44:43.941 2024.08.05 23:44:50.669 2024.08.05 22:13:29.317 2024.08.05 22:13:34.950
163 6.0.0.409 2024.08.02 ec18f P P 6987 5864 2024.08.04 23:48:14.392 2024.08.04 23:48:21.379 2024.08.04 22:14:11.793 2024.08.04 22:14:17.657
164 6.0.0.406 2024.08.01 b20be P P 7075 5835 2024.08.01 23:46:52.922 2024.08.01 23:46:59.997 2024.08.01 22:13:30.010 2024.08.01 22:13:35.845
165 6.0.0.405 2024.07.31 a62ac P P 6753 5878 2024.07.31 23:45:50.656 2024.07.31 23:45:57.409 2024.07.31 22:13:16.032 2024.07.31 22:13:21.910
166 6.0.0.403 2024.07.29 30f03 P P 8305 5917 2024.07.29 23:45:32.816 2024.07.29 23:45:41.121 2024.07.29 22:13:03.964 2024.07.29 22:13:09.881
167 6.0.0.401 2024.07.26 24e41 P P 8109 5653 2024.07.26 23:42:26.441 2024.07.26 23:42:34.550 2024.07.26 22:13:03.630 2024.07.26 22:13:09.283
168 6.0.0.400 2024.07.24 5bb78 P P 8186 5909 2024.07.24 23:42:17.569 2024.07.24 23:42:25.755 2024.07.24 22:13:13.539 2024.07.24 22:13:19.448
169 6.0.0.398 2024.07.23 85b18 P P 6771 6202 2024.07.23 23:47:54.121 2024.07.23 23:48:00.892 2024.07.23 22:19:04.972 2024.07.23 22:19:11.174
170 6.0.0.397 2024.07.22 c734c P P 8203 5919 2024.07.22 23:42:06.178 2024.07.22 23:42:14.381 2024.07.22 22:13:10.138 2024.07.22 22:13:16.057
171 6.0.0.396 2024.07.13 cf952 P P 6833 5839 2024.07.21 23:43:28.093 2024.07.21 23:43:34.926 2024.07.21 22:13:04.415 2024.07.21 22:13:10.254
172 6.0.0.395 2024.07.10 845f4 P P 7094 6228 2024.07.12 23:44:18.309 2024.07.12 23:44:25.403 2024.07.12 22:12:13.336 2024.07.12 22:12:19.564
173 6.0.0.392 2024.07.09 ea301 P P 6818 6349 2024.07.09 23:39:35.562 2024.07.09 23:39:42.380 2024.07.09 22:11:27.417 2024.07.09 22:11:33.766
174 6.0.0.391 2024.07.08 7d50c P P 6773 6114 2024.07.08 23:40:43.182 2024.07.08 23:40:49.955 2024.07.08 22:12:25.983 2024.07.08 22:12:32.097
175 6.0.0.389 2024.07.05 cc71c P P 6763 6247 2024.07.05 23:44:57.193 2024.07.05 23:45:03.956 2024.07.05 22:12:16.611 2024.07.05 22:12:22.858
176 6.0.0.388 2024.06.30 e5700 P P 6703 6063 2024.06.30 23:40:42.018 2024.06.30 23:40:48.721 2024.06.30 22:12:40.325 2024.06.30 22:12:46.388
177 6.0.0.387 2024.06.27 7c28a P P 6799 6120 2024.06.27 23:39:44.205 2024.06.27 23:39:51.004 2024.06.27 22:12:22.675 2024.06.27 22:12:28.795
178 6.0.0.386 2024.06.23 7c57f P P 6672 6259 2024.06.23 23:37:00.833 2024.06.23 23:37:07.505 2024.06.23 22:11:04.373 2024.06.23 22:11:10.632
179 6.0.0.384 2024.06.21 24d99 P P 6829 6087 2024.06.21 23:41:38.832 2024.06.21 23:41:45.661 2024.06.21 22:12:36.517 2024.06.21 22:12:42.604
180 6.0.0.374 2024.06.13 0097d P P 6728 6476 2024.06.20 23:39:37.357 2024.06.20 23:39:44.085 2024.06.20 22:11:51.181 2024.06.20 22:11:57.657
181 6.0.0.373 2024.06.09 363f0 P P 7025 6203 2024.06.13 13:48:17.249 2024.06.13 13:48:24.274 2024.06.13 12:35:14.269 2024.06.13 12:35:20.472
182 6.0.0.371 2024.06.08 f7130 P P 7041 5974 2024.06.11 22:34:41.281 2024.06.11 22:34:48.322 2024.06.11 21:28:21.910 2024.06.11 21:28:27.884
183 6.0.0.366 2024.05.30 ab2c9 P P 9956 6205 2024.06.12 09:50:15.618 2024.06.12 09:50:25.574 2024.06.12 08:02:44.652 2024.06.12 08:02:50.857
184 6.0.0.363 2024.05.27 06703 P P 7308 5904 2024.06.12 14:41:25.116 2024.06.12 14:41:32.424 2024.06.12 13:31:27.477 2024.06.12 13:31:33.381
185 6.0.0.359 2024.05.23 9cb11 P P 6764 5866 2024.06.12 12:33:06.502 2024.06.12 12:33:13.266 2024.06.12 11:23:55.646 2024.06.12 11:24:01.512
186 6.0.0.358 2024.05.21 995dd P P 7085 5906 2024.06.12 17:16:16.096 2024.06.12 17:16:23.181 2024.06.12 16:08:47.058 2024.06.12 16:08:52.964
187 6.0.0.357 2024.05.18 bf6c4 P P 7237 5841 2024.06.12 21:52:42.485 2024.06.12 21:52:49.722 2024.06.12 20:44:38.759 2024.06.12 20:44:44.600
188 6.0.0.356 2024.05.17 eab06 P P 6983 5927 2024.06.13 05:59:09.066 2024.06.13 05:59:16.049 2024.06.13 04:51:20.582 2024.06.13 04:51:26.509
189 6.0.0.355 2024.05.16 8dd6e P P 7206 5909 2024.06.13 08:07:00.386 2024.06.13 08:07:07.592 2024.06.13 06:58:54.651 2024.06.13 06:59:00.560
190 6.0.0.354 2024.05.15 d3adc P P 7326 6317 2024.06.13 11:12:48.368 2024.06.13 11:12:55.694 2024.06.13 10:00:26.253 2024.06.13 10:00:32.570
191 6.0.0.351 2024.05.14 2e3e0 P P 7103 6218 2024.06.13 16:26:30.513 2024.06.13 16:26:37.616 2024.06.13 15:13:42.809 2024.06.13 15:13:49.027

Elapsed time, ms. Chart for last 150 runs:

Last commits information (all timestamps in UTC):