Jump to: output_first_mismatch    outcomes_full_history    elapsed_time_chart
Show cross-report outcomes.

Annotation type Annotation details
2 @message
firebird.qa.plugin.ExecutionError: ISQL execution failed

LOG DETAILS:

2024-05-09 21:54:22.822
2024-05-09 21:54:22.822 act = <firebird.qa.plugin.Action object at [hex]>
2024-05-09 21:54:22.822 addi_script = WindowsPath('R:/temp/qa/fbqa/test_1986/addi_script.sql')
2024-05-09 21:54:22.822 main_script = WindowsPath('R:/temp/qa/fbqa/test_1986/main_script.sql')
2024-05-09 21:54:22.822 tmp_db = WindowsPath('R:/temp/qa/fbqa/test_1986/tmp_addi_4933.fdb')
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822     @pytest.mark.version('>=3.0.6')
2024-05-09 21:54:22.822     def test_1(act: Action, addi_script: Path, main_script: Path, tmp_db: Path):
2024-05-09 21:54:22.822         addi_script.write_text(f"""
2024-05-09 21:54:22.822             create database 'localhost:{tmp_db}' user {act.db.user} password '{act.db.password}';
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822             recreate view v_check as
2024-05-09 21:54:22.822             select
2024-05-09 21:54:22.822                  decode(t.mon$isolation_mode, 0,'consistency', 1,'snapshot', 2,'rc rec_vers', 3,'rc no_recv', 4,'rc read_cons', 'UNKNOWN') as tx_til_mon_trans,
2024-05-09 21:54:22.822                  rdb$get_context('SYSTEM', 'ISOLATION_LEVEL') as tx_til_rdb_get_context,
2024-05-09 21:54:22.822                  decode(t.mon$lock_timeout, -1, 'wait', 0, 'no_wait', 'timeout ' || t.mon$lock_timeout) as tx_lock_timeout_mon_trans,
2024-05-09 21:54:22.822                  rdb$get_context('SYSTEM', 'LOCK_TIMEOUT') as tx_lock_timeout_rdb_get_context,
2024-05-09 21:54:22.822                  iif(t.mon$read_only=1,'read_only','read_write') as tx_read_only_mon_trans,
2024-05-09 21:54:22.822                  rdb$get_context('SYSTEM', 'READ_ONLY') as tx_read_only_rdb_get_context,
2024-05-09 21:54:22.822                  t.mon$auto_undo as tx_autoundo_mon_trans
2024-05-09 21:54:22.822                 -- only in FB 4.x+: ,t.mon$auto_commit as tx_autocommit_mon_trans
2024-05-09 21:54:22.822             from mon$transactions t
2024-05-09 21:54:22.822             where t.mon$transaction_id = current_transaction;
2024-05-09 21:54:22.822             commit;
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822             select 'addi_script: create_new_db' as msg, v.* from v_check v;
2024-05-09 21:54:22.822             rollback;
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822             connect 'localhost:{tmp_db}' user {act.db.user} password '{act.db.password}';
2024-05-09 21:54:22.822             select 'addi_script: reconnect' as msg, v.* from v_check v;
2024-05-09 21:54:22.822             rollback;
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822             drop database;
2024-05-09 21:54:22.822             """)
2024-05-09 21:54:22.822         main_script.write_text(f"""
2024-05-09 21:54:22.822             set list on;
2024-05-09 21:54:22.822             connect '{act.db.dsn}' user {act.db.user} password '{act.db.password}';
2024-05-09 21:54:22.822             recreate view v_check as
2024-05-09 21:54:22.822             select
2024-05-09 21:54:22.822                  decode(t.mon$isolation_mode, 0,'consistency', 1,'snapshot', 2,'rc rec_vers', 3,'rc no_recv', 4,'rc read_cons', 'UNKNOWN') as tx_til_mon_trans,
2024-05-09 21:54:22.822                  rdb$get_context('SYSTEM', 'ISOLATION_LEVEL') as tx_til_rdb_get_context,
2024-05-09 21:54:22.822                  decode(t.mon$lock_timeout, -1, 'wait', 0, 'no_wait', 'timeout ' || t.mon$lock_timeout) as tx_lock_timeout_mon_trans,
2024-05-09 21:54:22.822                  rdb$get_context('SYSTEM', 'LOCK_TIMEOUT') as tx_lock_timeout_rdb_get_context,
2024-05-09 21:54:22.822                  iif(t.mon$read_only=1,'read_only','read_write') as tx_read_only_mon_trans,
2024-05-09 21:54:22.822                  rdb$get_context('SYSTEM', 'READ_ONLY') as tx_read_only_rdb_get_context,
2024-05-09 21:54:22.822                  t.mon$auto_undo as tx_autoundo_mon_trans
2024-05-09 21:54:22.822                 -- only 4.x: ,t.mon$auto_commit as tx_autocommit_mon_trans
2024-05-09 21:54:22.822             from mon$transactions t
2024-05-09 21:54:22.822             where t.mon$transaction_id = current_transaction;
2024-05-09 21:54:22.822             commit;
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822             select 'main_script: initial' as msg, v.* from v_check v;
2024-05-09 21:54:22.822             commit;
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822             set keep_tran on;
2024-05-09 21:54:22.822             commit;
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822             set transaction read only read committed record_version lock timeout 5 no auto undo; -- only in 4.x: auto commit;
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822             select 'main_script: started Tx' as msg, v.* from v_check v;
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822             commit; -------------------------------------------------------------------------------------- [ 1 ]
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822             select 'main_script: after_commit' as msg, v.* from v_check v;
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822             rollback; ------------------------------------------------------------------------------------ [ 2 ]
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822             select 'main_script: after_rollback' as msg, v.* from v_check v;
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822             rollback;
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822             connect '{act.db.dsn}' user {act.db.user} password '{act.db.password}'; --------------------------- [ 3 ]
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822             select 'main_script: after_reconnect' as msg, v.* from v_check v;
2024-05-09 21:54:22.822             rollback;
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822             --###################
2024-05-09 21:54:22.822             in {addi_script};
2024-05-09 21:54:22.822             --###################
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822             connect '{act.db.dsn}' user {act.db.user} password '{act.db.password}'; --------------------------- [ 5 ]
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822             select 'main_script: resume' as msg, v.* from v_check v;
2024-05-09 21:54:22.822             rollback;
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822             set keep_tran off;
2024-05-09 21:54:22.822             commit;
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822             select 'keep_tran: turned_off' as msg, v.* from v_check v;
2024-05-09 21:54:22.822             commit;
2024-05-09 21:54:22.822             """)
2024-05-09 21:54:22.822         # Check
2024-05-09 21:54:22.822         act.expected_stdout = expected_stdout
2024-05-09 21:54:22.822 >       act.isql(switches=['-q'], input_file=main_script)
2024-05-09 21:54:22.822 E       firebird.qa.plugin.ExecutionError: ISQL execution failed
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822 tests\bugs\core_4933_test.py:217: ExecutionError
2024-05-09 21:54:22.822 ---------------------------- Captured stdout setup ----------------------------
2024-05-09 21:54:22.822 Cached db: db-13.0-None-None-NONE.fdb [page_size=None, sql_dialect=None, charset='NONE'
2024-05-09 21:54:22.822 -------------------------- Captured ISQL stdout call --------------------------
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822 MSG                             main_script: initial
2024-05-09 21:54:22.822 TX_TIL_MON_TRANS                snapshot
2024-05-09 21:54:22.822 TX_TIL_RDB_GET_CONTEXT          SNAPSHOT
2024-05-09 21:54:22.822 TX_LOCK_TIMEOUT_MON_TRANS       wait
2024-05-09 21:54:22.822 TX_LOCK_TIMEOUT_RDB_GET_CONTEXT -1
2024-05-09 21:54:22.822 TX_READ_ONLY_MON_TRANS          read_write
2024-05-09 21:54:22.822 TX_READ_ONLY_RDB_GET_CONTEXT    FALSE
2024-05-09 21:54:22.822 TX_AUTOUNDO_MON_TRANS           1
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822 MSG                             main_script: started Tx
2024-05-09 21:54:22.822 TX_TIL_MON_TRANS                rc rec_vers
2024-05-09 21:54:22.822 TX_TIL_RDB_GET_CONTEXT          READ COMMITTED
2024-05-09 21:54:22.822 TX_LOCK_TIMEOUT_MON_TRANS       timeout 5
2024-05-09 21:54:22.822 TX_LOCK_TIMEOUT_RDB_GET_CONTEXT 5
2024-05-09 21:54:22.822 TX_READ_ONLY_MON_TRANS          read_only
2024-05-09 21:54:22.822 TX_READ_ONLY_RDB_GET_CONTEXT    TRUE
2024-05-09 21:54:22.822 TX_AUTOUNDO_MON_TRANS           0
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822 MSG                             main_script: after_commit
2024-05-09 21:54:22.822 TX_TIL_MON_TRANS                rc rec_vers
2024-05-09 21:54:22.822 TX_TIL_RDB_GET_CONTEXT          READ COMMITTED
2024-05-09 21:54:22.822 TX_LOCK_TIMEOUT_MON_TRANS       timeout 5
2024-05-09 21:54:22.822 TX_LOCK_TIMEOUT_RDB_GET_CONTEXT 5
2024-05-09 21:54:22.822 TX_READ_ONLY_MON_TRANS          read_only
2024-05-09 21:54:22.822 TX_READ_ONLY_RDB_GET_CONTEXT    TRUE
2024-05-09 21:54:22.822 TX_AUTOUNDO_MON_TRANS           0
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822 MSG                             main_script: after_rollback
2024-05-09 21:54:22.822 TX_TIL_MON_TRANS                rc rec_vers
2024-05-09 21:54:22.822 TX_TIL_RDB_GET_CONTEXT          READ COMMITTED
2024-05-09 21:54:22.822 TX_LOCK_TIMEOUT_MON_TRANS       timeout 5
2024-05-09 21:54:22.822 TX_LOCK_TIMEOUT_RDB_GET_CONTEXT 5
2024-05-09 21:54:22.822 TX_READ_ONLY_MON_TRANS          read_only
2024-05-09 21:54:22.822 TX_READ_ONLY_RDB_GET_CONTEXT    TRUE
2024-05-09 21:54:22.822 TX_AUTOUNDO_MON_TRANS           0
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822 MSG                             main_script: after_reconnect
2024-05-09 21:54:22.822 TX_TIL_MON_TRANS                rc rec_vers
2024-05-09 21:54:22.822 TX_TIL_RDB_GET_CONTEXT          READ COMMITTED
2024-05-09 21:54:22.822 TX_LOCK_TIMEOUT_MON_TRANS       timeout 5
2024-05-09 21:54:22.822 TX_LOCK_TIMEOUT_RDB_GET_CONTEXT 5
2024-05-09 21:54:22.822 TX_READ_ONLY_MON_TRANS          read_only
2024-05-09 21:54:22.822 TX_READ_ONLY_RDB_GET_CONTEXT    TRUE
2024-05-09 21:54:22.822 TX_AUTOUNDO_MON_TRANS           0
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822 MSG                             addi_script: create_new_db
2024-05-09 21:54:22.822 TX_TIL_MON_TRANS                rc rec_vers
2024-05-09 21:54:22.822 TX_TIL_RDB_GET_CONTEXT          READ COMMITTED
2024-05-09 21:54:22.822 TX_LOCK_TIMEOUT_MON_TRANS       timeout 5
2024-05-09 21:54:22.822 TX_LOCK_TIMEOUT_RDB_GET_CONTEXT 5
2024-05-09 21:54:22.822 TX_READ_ONLY_MON_TRANS          read_only
2024-05-09 21:54:22.822 TX_READ_ONLY_RDB_GET_CONTEXT    TRUE
2024-05-09 21:54:22.822 TX_AUTOUNDO_MON_TRANS           0
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822 MSG                             addi_script: reconnect
2024-05-09 21:54:22.822 TX_TIL_MON_TRANS                rc rec_vers
2024-05-09 21:54:22.822 TX_TIL_RDB_GET_CONTEXT          READ COMMITTED
2024-05-09 21:54:22.822 TX_LOCK_TIMEOUT_MON_TRANS       timeout 5
2024-05-09 21:54:22.822 TX_LOCK_TIMEOUT_RDB_GET_CONTEXT 5
2024-05-09 21:54:22.822 TX_READ_ONLY_MON_TRANS          read_only
2024-05-09 21:54:22.822 TX_READ_ONLY_RDB_GET_CONTEXT    TRUE
2024-05-09 21:54:22.822 TX_AUTOUNDO_MON_TRANS           0
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822 MSG                             main_script: resume
2024-05-09 21:54:22.822 TX_TIL_MON_TRANS                rc rec_vers
2024-05-09 21:54:22.822 TX_TIL_RDB_GET_CONTEXT          READ COMMITTED
2024-05-09 21:54:22.822 TX_LOCK_TIMEOUT_MON_TRANS       timeout 5
2024-05-09 21:54:22.822 TX_LOCK_TIMEOUT_RDB_GET_CONTEXT 5
2024-05-09 21:54:22.822 TX_READ_ONLY_MON_TRANS          read_only
2024-05-09 21:54:22.822 TX_READ_ONLY_RDB_GET_CONTEXT    TRUE
2024-05-09 21:54:22.822 TX_AUTOUNDO_MON_TRANS           0
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822 MSG                             keep_tran: turned_off
2024-05-09 21:54:22.822 TX_TIL_MON_TRANS                snapshot
2024-05-09 21:54:22.822 TX_TIL_RDB_GET_CONTEXT          SNAPSHOT
2024-05-09 21:54:22.822 TX_LOCK_TIMEOUT_MON_TRANS       wait
2024-05-09 21:54:22.822 TX_LOCK_TIMEOUT_RDB_GET_CONTEXT -1
2024-05-09 21:54:22.822 TX_READ_ONLY_MON_TRANS          read_write
2024-05-09 21:54:22.822 TX_READ_ONLY_RDB_GET_CONTEXT    FALSE
2024-05-09 21:54:22.822 TX_AUTOUNDO_MON_TRANS           1
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822
2024-05-09 21:54:22.822 -------------------------- Captured ISQL stderr call --------------------------
2024-05-09 21:54:22.822 Rolling back work.
3 #text
act = <firebird.qa.plugin.Action pytest object at [hex]>
addi_script = WindowsPath('R:/temp/qa/fbqa/test_1986/addi_script.sql')
main_script = WindowsPath('R:/temp/qa/fbqa/test_1986/main_script.sql')
tmp_db = WindowsPath('R:/temp/qa/fbqa/test_1986/tmp_addi_4933.fdb')

    @pytest.mark.version('>=3.0.6')
    def test_1(act: Action, addi_script: Path, main_script: Path, tmp_db: Path):
        addi_script.write_text(f"""
            create database 'localhost:{tmp_db}' user {act.db.user} password '{act.db.password}';
    
            recreate view v_check as
            select
                 decode(t.mon$isolation_mode, 0,'consistency', 1,'snapshot', 2,'rc rec_vers', 3,'rc no_recv', 4,'rc read_cons', 'UNKNOWN') as tx_til_mon_trans,
                 rdb$get_context('SYSTEM', 'ISOLATION_LEVEL') as tx_til_rdb_get_context,
                 decode(t.mon$lock_timeout, -1, 'wait', 0, 'no_wait', 'timeout ' || t.mon$lock_timeout) as tx_lock_timeout_mon_trans,
                 rdb$get_context('SYSTEM', 'LOCK_TIMEOUT') as tx_lock_timeout_rdb_get_context,
                 iif(t.mon$read_only=1,'read_only','read_write') as tx_read_only_mon_trans,
                 rdb$get_context('SYSTEM', 'READ_ONLY') as tx_read_only_rdb_get_context,
                 t.mon$auto_undo as tx_autoundo_mon_trans
                -- only in FB 4.x+: ,t.mon$auto_commit as tx_autocommit_mon_trans
            from mon$transactions t
            where t.mon$transaction_id = current_transaction;
            commit;
    
            select 'addi_script: create_new_db' as msg, v.* from v_check v;
            rollback;
    
            connect 'localhost:{tmp_db}' user {act.db.user} password '{act.db.password}';
            select 'addi_script: reconnect' as msg, v.* from v_check v;
            rollback;
    
            drop database;
            """)
        main_script.write_text(f"""
            set list on;
            connect '{act.db.dsn}' user {act.db.user} password '{act.db.password}';
            recreate view v_check as
            select
                 decode(t.mon$isolation_mode, 0,'consistency', 1,'snapshot', 2,'rc rec_vers', 3,'rc no_recv', 4,'rc read_cons', 'UNKNOWN') as tx_til_mon_trans,
                 rdb$get_context('SYSTEM', 'ISOLATION_LEVEL') as tx_til_rdb_get_context,
                 decode(t.mon$lock_timeout, -1, 'wait', 0, 'no_wait', 'timeout ' || t.mon$lock_timeout) as tx_lock_timeout_mon_trans,
                 rdb$get_context('SYSTEM', 'LOCK_TIMEOUT') as tx_lock_timeout_rdb_get_context,
                 iif(t.mon$read_only=1,'read_only','read_write') as tx_read_only_mon_trans,
                 rdb$get_context('SYSTEM', 'READ_ONLY') as tx_read_only_rdb_get_context,
                 t.mon$auto_undo as tx_autoundo_mon_trans
                -- only 4.x: ,t.mon$auto_commit as tx_autocommit_mon_trans
            from mon$transactions t
            where t.mon$transaction_id = current_transaction;
            commit;
    
            select 'main_script: initial' as msg, v.* from v_check v;
            commit;
    
            set keep_tran on;
            commit;
    
            set transaction read only read committed record_version lock timeout 5 no auto undo; -- only in 4.x: auto commit;
    
            select 'main_script: started Tx' as msg, v.* from v_check v;
    
            commit; -------------------------------------------------------------------------------------- [ 1 ]
    
            select 'main_script: after_commit' as msg, v.* from v_check v;
    
            rollback; ------------------------------------------------------------------------------------ [ 2 ]
    
            select 'main_script: after_rollback' as msg, v.* from v_check v;
    
            rollback;
    
            connect '{act.db.dsn}' user {act.db.user} password '{act.db.password}'; --------------------------- [ 3 ]
    
            select 'main_script: after_reconnect' as msg, v.* from v_check v;
            rollback;
    
            --###################
            in {addi_script};
            --###################
    
            connect '{act.db.dsn}' user {act.db.user} password '{act.db.password}'; --------------------------- [ 5 ]
    
            select 'main_script: resume' as msg, v.* from v_check v;
            rollback;
    
            set keep_tran off;
            commit;
    
            select 'keep_tran: turned_off' as msg, v.* from v_check v;
            commit;
            """)
        # Check
        act.expected_stdout = expected_stdout
>       act.isql(switches=['-q'], input_file=main_script)
E       firebird.qa.plugin.ExecutionError: ISQL execution failed

tests\bugs\core_4933_test.py:217: ExecutionError
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 4.0.6.3189 2025.02.25 1a1a5 P P 1050 688 2025.06.28 12:56:28.297 2025.06.28 12:56:29.347 2025.06.28 12:02:11.078 2025.06.28 12:02:11.766
2 4.0.6.3184 2025.02.24 9388c P P 1075 725 2025.02.25 10:35:01.138 2025.02.25 10:35:02.213 2025.02.25 09:22:17.557 2025.02.25 09:22:18.282
3 4.0.6.3183 2025.02.17 e4762 P P 1049 736 2025.02.24 11:07:07.601 2025.02.24 11:07:08.650 2025.02.24 10:12:33.343 2025.02.24 10:12:34.079
4 4.0.6.3169 2024.12.13 42cc1 P P 1059 672 2025.02.14 07:55:24.037 2025.02.14 07:55:25.096 2025.02.14 07:00:51.165 2025.02.14 07:00:51.837
5 4.0.6.3169 2024.12.08 50eb6 P P 1109 681 2024.12.11 10:51:44.285 2024.12.11 10:51:45.394 2024.12.11 09:57:40.571 2024.12.11 09:57:41.252
6 4.0.6.3168 2024.12.07 98d69 P P 1101 782 2024.12.08 03:34:40.208 2024.12.08 03:34:41.309 2024.12.08 02:39:10.427 2024.12.08 02:39:11.209
7 4.0.6.3168 2024.12.05 cee43 P P 1057 736 2024.12.06 03:37:57.325 2024.12.06 03:37:58.382 2024.12.06 02:43:51.123 2024.12.06 02:43:51.859
8 4.0.6.3168 2024.11.28 48149 P P 1060 686 2024.12.03 10:31:44.808 2024.12.03 10:31:45.868 2024.12.03 09:38:21.144 2024.12.03 09:38:21.830
9 4.0.6.3163 2024.10.30 832db P P 1044 680 2024.11.28 10:30:07.453 2024.11.28 10:30:08.497 2024.11.28 09:37:13.668 2024.11.28 09:37:14.348
10 4.0.6.3163 2024.10.16 2bb10 P P 1075 688 2024.10.30 10:39:21.716 2024.10.30 10:39:22.791 2024.10.30 09:45:57.625 2024.10.30 09:45:58.313
11 4.0.6.3147 2024.09.10 a4d11 P P 1091 673 2024.10.16 03:46:52.810 2024.10.16 03:46:53.901 2024.10.16 02:34:36.294 2024.10.16 02:34:36.967
12 4.0.6.3147 2024.08.31 4655b P P 1153 677 2024.09.10 10:43:21.510 2024.09.10 10:43:22.663 2024.09.10 09:47:16.328 2024.09.10 09:47:17.005
13 4.0.6.3140 2024.08.16 1dd8b P P 1187 765 2024.09.01 11:06:17.540 2024.09.01 11:06:18.727 2024.09.01 09:51:41.351 2024.09.01 09:51:42.116
14 4.0.6.3140 2024.08.09 34747 P P 1326 765 2024.08.16 10:46:06.721 2024.08.16 10:46:08.047 2024.08.16 09:50:30.001 2024.08.16 09:50:30.766
15 4.0.5.3110 2024.08.06 f851c P P 1294 758 2024.08.09 10:25:27.882 2024.08.09 10:25:29.176 2024.08.09 09:30:13.545 2024.08.09 09:30:14.303
16 4.0.5.3110 2024.07.30 c6527 P P 1062 684 2024.08.06 06:04:05.122 2024.08.06 06:04:06.184 2024.08.06 05:13:40.732 2024.08.06 05:13:41.416
17 4.0.5.3109 2024.06.11 6addf P P 988 633 2024.07.30 09:22:27.133 2024.07.30 09:22:28.121 2024.07.30 08:33:50.158 2024.07.30 08:33:50.791
18 4.0.5.3097 2024.05.09 27fa6 P P 922 485 2024.06.11 05:41:35.753 2024.06.11 05:41:36.675 2024.06.11 04:58:01.636 2024.06.11 04:58:02.121
19 4.0.5.3091 2024.04.29 bd0aa F F 1062 547 2024.05.09 18:21:03.293 2024.05.09 18:21:04.355 2024.05.09 17:37:54.646 2024.05.09 17:37:55.193
20 4.0.5.3089 2024.04.20 9eb9b P P 1031 515 2024.04.29 06:29:44.671 2024.04.29 06:29:45.702 2024.04.29 05:46:51.853 2024.04.29 05:46:52.368
21 4.0.5.3083 2024.04.06 300f9 P P 1031 515 2024.04.20 06:52:54.018 2024.04.20 06:52:55.049 2024.04.20 06:09:49.188 2024.04.20 06:09:49.703
22 4.0.5.3052 2024.03.16 0f422 P P 953 485 2024.04.05 03:20:12.612 2024.04.05 03:20:13.565 2024.04.05 02:38:35.993 2024.04.05 02:38:36.478
23 4.0.5.3052 2024.03.16 ce273 P P 874 484 2024.03.29 14:47:00.798 2024.03.29 14:47:01.672 2024.03.29 14:06:40.575 2024.03.29 14:06:41.059
24 4.0.5.3052 2024.02.12 cd058 P P 890 484 2024.03.29 16:15:24.868 2024.03.29 16:15:25.758 2024.03.29 15:35:06.693 2024.03.29 15:35:07.177
25 4.0.5.3052 2024.02.07 be290 P P 906 483 2024.03.29 18:26:54.413 2024.03.29 18:26:55.319 2024.03.29 17:46:35.795 2024.03.29 17:46:36.278
26 4.0.5.3052 2024.02.07 6409b P P 890 483 2024.03.29 20:11:06.142 2024.03.29 20:11:07.032 2024.03.29 19:30:48.609 2024.03.29 19:30:49.092
27 4.0.5.3052 2024.02.02 bbc3f P P 890 484 2024.03.29 22:20:08.428 2024.03.29 22:20:09.318 2024.03.29 21:39:51.494 2024.03.29 21:39:51.978
28 4.0.5.3052 2024.01.26 48b7c P P 890 483 2024.03.29 23:47:20.899 2024.03.29 23:47:21.789 2024.03.29 23:07:00.957 2024.03.29 23:07:01.440
29 4.0.5.3052 2024.01.26 9a7b3 P P 890 484 2024.03.30 06:48:20.298 2024.03.30 06:48:21.188 2024.03.30 06:08:00.700 2024.03.30 06:08:01.184
30 4.0.5.3049 2024.01.25 f6b9d P P 812 452 2024.03.30 08:55:42.183 2024.03.30 08:55:42.995 2024.03.30 08:15:42.321 2024.03.30 08:15:42.773
31 4.0.5.3049 2024.01.08 b67ce P P 1171 545 2024.03.30 10:38:24.036 2024.03.30 10:38:25.207 2024.03.30 09:52:38.333 2024.03.30 09:52:38.878
32 4.0.5.3049 2024.01.08 97577 P P 1124 530 2024.03.30 15:43:39.765 2024.03.30 15:43:40.889 2024.03.30 14:57:57.611 2024.03.30 14:57:58.141
33 4.0.5.3049 2024.01.05 2d8b0 P P 1139 530 2024.03.30 19:01:21.925 2024.03.30 19:01:23.064 2024.03.30 18:15:55.307 2024.03.30 18:15:55.837
34 4.0.5.3049 2024.01.04 431e5 P P 812 436 2024.03.30 20:44:42.027 2024.03.30 20:44:42.839 2024.03.30 20:04:48.571 2024.03.30 20:04:49.007
35 4.0.5.3049 2024.01.04 e33b4 P P 812 437 2024.03.30 22:56:34.461 2024.03.30 22:56:35.273 2024.03.30 22:16:32.969 2024.03.30 22:16:33.406
36 4.0.5.3049 2024.01.04 207ef P P 811 437 2024.03.31 00:40:02.764 2024.03.31 00:40:03.575 2024.03.30 23:59:57.837 2024.03.30 23:59:58.274
37 4.0.5.3034 2023.12.12 c05ff P P 812 452 2024.03.31 06:32:37.504 2024.03.31 06:32:38.316 2024.03.31 05:52:33.835 2024.03.31 05:52:34.287
38 4.0.5.3034 2023.12.12 3a40e P P 827 453 2024.03.31 15:07:20.992 2024.03.31 15:07:21.819 2024.03.31 14:27:14.588 2024.03.31 14:27:15.041
39 4.0.5.3034 2023.12.02 5934b P P 811 452 2024.03.31 09:40:23.742 2024.03.31 09:40:24.553 2024.03.31 09:00:20.207 2024.03.31 09:00:20.659
40 4.0.5.3034 2023.12.02 7ea5a P P 843 452 2024.03.31 17:31:40.891 2024.03.31 17:31:41.734 2024.03.31 16:51:33.415 2024.03.31 16:51:33.867
41 4.0.5.3034 2023.11.30 4fbc9 P P 827 452 2024.03.31 19:32:35.242 2024.03.31 19:32:36.069 2024.03.31 18:52:26.638 2024.03.31 18:52:27.090

Elapsed time, ms. Chart for last 41 runs:

Last commits information (all timestamps in UTC):