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   
  + set planonly;
  + select * from test t where x = 0 plan (t natural); -- 1
  + PLAN (T NATURAL)
  + select * from v_test1 v1; -- 2
  + PLAN (V1 T INDEX (TEST_X_ASC))
  + select * from v_test1 v2; -- 3
  + PLAN (V2 T INDEX (TEST_X_ASC))
  + select * from v_test1 v1 where v1.x = 0 plan (v1 natural); -- 4
  + PLAN (V1 T NATURAL)
  + select * from v_test2 v2 where v2.x = 0 plan (v2 natural); -- 5
  + PLAN (V2 T NATURAL)
  + select * from v_test1 v1 where v1.x = 0 PLAN (V1 INDEX (TEST_X_DESC)) ; -- 6
  + PLAN (V1 T INDEX (TEST_X_DESC))
  + select * from v_test2 v2 where v2.x = 0 PLAN (V2 INDEX (TEST_X_DESC)) ; -- 7
  + PLAN (V2 T INDEX (TEST_X_DESC))
  + select * from v_test1 v1 where v1.x = 50 and v1.y = 5000 PLAN (V1 INDEX (test_x_y)) ; -- 8
  + PLAN (V1 T INDEX (TEST_X_Y))
  + select * from v_test1 v2 where v2.x = 50 and v2.y = 5000 PLAN (V2 INDEX (test_y_x)) ; -- 9
  + PLAN (V2 T INDEX (TEST_Y_X))
  + select * from v_test1 v1 where v1.x + v1.y = 1000 PLAN (V1 INDEX (test_x_y)); -- 10
  + PLAN (V1 T INDEX (TEST_X_Y))
  + select * from v_test2 v2 where v2.x - v2.y = 1000 PLAN (V2 INDEX (test_x_y)); -- 11
  + PLAN (V2 T INDEX (TEST_X_Y))
  + select * from v_test1 v1 where v1.x + v1.y = 1000 PLAN (V1 INDEX (test_sum_x_y)); -- 12
  + PLAN (V1 T INDEX (TEST_SUM_X_Y))
  + select * from v_test2 v2 where v2.x - v2.y = 1000 PLAN (V2 INDEX (test_sub_x_y)); -- 13
  + PLAN (V2 T INDEX (TEST_SUB_X_Y))
  + -- NB: here optimizer will use index __NOT__ from view V3 DDL:
  + -- PLAN (V3 T INDEX (TEST_X_ASC))
  + select * from v_test3 v3; -- 14
  + PLAN (V3 T INDEX (TEST_X_ASC))
  + select * from v_test3 v3 plan ( v3 index(test_x_y) );
  + PLAN (V3 T INDEX (TEST_X_Y))
  + -- NB: here optimizer will use index __NOT__ from view V3 DDL:
  + -- PLAN (V4 V_TEST3 T INDEX (TEST_X_ASC))
  + select * from v_test4 v4; -- 15
  + PLAN (V4 V_TEST3 T INDEX (TEST_X_ASC))
  + select * from v_test4 v4 PLAN (V4 V_TEST3 T INDEX (TEST_X_Y)); -- 16
  + PLAN (V4 V_TEST3 T INDEX (TEST_X_Y))

LOG DETAILS:

2025-06-29 11:47:31.163
2025-06-29 11:47:31.176 act = <firebird.qa.plugin.Action object at [hex]>
2025-06-29 11:47:31.186
2025-06-29 11:47:31.200 @pytest.mark.version('>=3')
2025-06-29 11:47:31.209 def test_1(act: Action):
2025-06-29 11:47:31.215 act.expected_stdout = expected_stdout
2025-06-29 11:47:31.221 act.execute()
2025-06-29 11:47:31.225 >       assert act.clean_stdout == act.clean_expected_stdout
2025-06-29 11:47:31.230 E       assert
2025-06-29 11:47:31.235 E         + set planonly;
2025-06-29 11:47:31.241 E         + select * from test t where x = 0 plan (t natural); -- 1
2025-06-29 11:47:31.246 E         + PLAN (T NATURAL)
2025-06-29 11:47:31.251 E         + select * from v_test1 v1; -- 2
2025-06-29 11:47:31.255 E         + PLAN (V1 T INDEX (TEST_X_ASC))
2025-06-29 11:47:31.260 E         + select * from v_test1 v2; -- 3
2025-06-29 11:47:31.265 E         + PLAN (V2 T INDEX (TEST_X_ASC))
2025-06-29 11:47:31.270 E         + select * from v_test1 v1 where v1.x = 0 plan (v1 natural); -- 4
2025-06-29 11:47:31.274 E         + PLAN (V1 T NATURAL)
2025-06-29 11:47:31.279 E         + select * from v_test2 v2 where v2.x = 0 plan (v2 natural); -- 5
2025-06-29 11:47:31.285 E         + PLAN (V2 T NATURAL)
2025-06-29 11:47:31.290 E         + select * from v_test1 v1 where v1.x = 0 PLAN (V1 INDEX (TEST_X_DESC)) ; -- 6
2025-06-29 11:47:31.294 E         + PLAN (V1 T INDEX (TEST_X_DESC))
2025-06-29 11:47:31.300 E         + select * from v_test2 v2 where v2.x = 0 PLAN (V2 INDEX (TEST_X_DESC)) ; -- 7
2025-06-29 11:47:31.305 E         + PLAN (V2 T INDEX (TEST_X_DESC))
2025-06-29 11:47:31.310 E         + select * from v_test1 v1 where v1.x = 50 and v1.y = 5000 PLAN (V1 INDEX (test_x_y)) ; -- 8
2025-06-29 11:47:31.315 E         + PLAN (V1 T INDEX (TEST_X_Y))
2025-06-29 11:47:31.320 E         + select * from v_test1 v2 where v2.x = 50 and v2.y = 5000 PLAN (V2 INDEX (test_y_x)) ; -- 9
2025-06-29 11:47:31.325 E         + PLAN (V2 T INDEX (TEST_Y_X))
2025-06-29 11:47:31.331 E         + select * from v_test1 v1 where v1.x + v1.y = 1000 PLAN (V1 INDEX (test_x_y)); -- 10
2025-06-29 11:47:31.336 E         + PLAN (V1 T INDEX (TEST_X_Y))
2025-06-29 11:47:31.341 E         + select * from v_test2 v2 where v2.x - v2.y = 1000 PLAN (V2 INDEX (test_x_y)); -- 11
2025-06-29 11:47:31.346 E         + PLAN (V2 T INDEX (TEST_X_Y))
2025-06-29 11:47:31.351 E         + select * from v_test1 v1 where v1.x + v1.y = 1000 PLAN (V1 INDEX (test_sum_x_y)); -- 12
2025-06-29 11:47:31.355 E         + PLAN (V1 T INDEX (TEST_SUM_X_Y))
2025-06-29 11:47:31.361 E         + select * from v_test2 v2 where v2.x - v2.y = 1000 PLAN (V2 INDEX (test_sub_x_y)); -- 13
2025-06-29 11:47:31.366 E         + PLAN (V2 T INDEX (TEST_SUB_X_Y))
2025-06-29 11:47:31.371 E         + -- NB: here optimizer will use index __NOT__ from view V3 DDL:
2025-06-29 11:47:31.377 E         + -- PLAN (V3 T INDEX (TEST_X_ASC))
2025-06-29 11:47:31.383 E         + select * from v_test3 v3; -- 14
2025-06-29 11:47:31.388 E         + PLAN (V3 T INDEX (TEST_X_ASC))
2025-06-29 11:47:31.393 E         + select * from v_test3 v3 plan ( v3 index(test_x_y) );
2025-06-29 11:47:31.399 E         + PLAN (V3 T INDEX (TEST_X_Y))
2025-06-29 11:47:31.405 E         + -- NB: here optimizer will use index __NOT__ from view V3 DDL:
2025-06-29 11:47:31.410 E         + -- PLAN (V4 V_TEST3 T INDEX (TEST_X_ASC))
2025-06-29 11:47:31.415 E         + select * from v_test4 v4; -- 15
2025-06-29 11:47:31.420 E         + PLAN (V4 V_TEST3 T INDEX (TEST_X_ASC))
2025-06-29 11:47:31.425 E         + select * from v_test4 v4 PLAN (V4 V_TEST3 T INDEX (TEST_X_Y)); -- 16
2025-06-29 11:47:31.431 E         + PLAN (V4 V_TEST3 T INDEX (TEST_X_Y))
2025-06-29 11:47:31.436
2025-06-29 11:47:31.441 tests/bugs/core_0203_test.py:124: AssertionError
2025-06-29 11:47:31.447 ---------------------------- Captured stdout setup -----------------------------
2025-06-29 11:47:31.452 Creating db: localhost:/var/tmp/qa_2024/test_139/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]>

    @pytest.mark.version('>=3')
    def test_1(act: Action):
        act.expected_stdout = expected_stdout
        act.execute()
>       assert act.clean_stdout == act.clean_expected_stdout
E       assert   
E         + set planonly;
E         + select * from test t where x = 0 plan (t natural); -- 1
E         + PLAN (T NATURAL)
E         + select * from v_test1 v1; -- 2
E         + PLAN (V1 T INDEX (TEST_X_ASC))
E         + select * from v_test1 v2; -- 3
E         + PLAN (V2 T INDEX (TEST_X_ASC))
E         + select * from v_test1 v1 where v1.x = 0 plan (v1 natural); -- 4
E         + PLAN (V1 T NATURAL)
E         + select * from v_test2 v2 where v2.x = 0 plan (v2 natural); -- 5
E         + PLAN (V2 T NATURAL)
E         + select * from v_test1 v1 where v1.x = 0 PLAN (V1 INDEX (TEST_X_DESC)) ; -- 6
E         + PLAN (V1 T INDEX (TEST_X_DESC))
E         + select * from v_test2 v2 where v2.x = 0 PLAN (V2 INDEX (TEST_X_DESC)) ; -- 7
E         + PLAN (V2 T INDEX (TEST_X_DESC))
E         + select * from v_test1 v1 where v1.x = 50 and v1.y = 5000 PLAN (V1 INDEX (test_x_y)) ; -- 8
E         + PLAN (V1 T INDEX (TEST_X_Y))
E         + select * from v_test1 v2 where v2.x = 50 and v2.y = 5000 PLAN (V2 INDEX (test_y_x)) ; -- 9
E         + PLAN (V2 T INDEX (TEST_Y_X))
E         + select * from v_test1 v1 where v1.x + v1.y = 1000 PLAN (V1 INDEX (test_x_y)); -- 10
E         + PLAN (V1 T INDEX (TEST_X_Y))
E         + select * from v_test2 v2 where v2.x - v2.y = 1000 PLAN (V2 INDEX (test_x_y)); -- 11
E         + PLAN (V2 T INDEX (TEST_X_Y))
E         + select * from v_test1 v1 where v1.x + v1.y = 1000 PLAN (V1 INDEX (test_sum_x_y)); -- 12
E         + PLAN (V1 T INDEX (TEST_SUM_X_Y))
E         + select * from v_test2 v2 where v2.x - v2.y = 1000 PLAN (V2 INDEX (test_sub_x_y)); -- 13
E         + PLAN (V2 T INDEX (TEST_SUB_X_Y))
E         + -- NB: here optimizer will use index __NOT__ from view V3 DDL:
E         + -- PLAN (V3 T INDEX (TEST_X_ASC))
E         + select * from v_test3 v3; -- 14
E         + PLAN (V3 T INDEX (TEST_X_ASC))
E         + select * from v_test3 v3 plan ( v3 index(test_x_y) );
E         + PLAN (V3 T INDEX (TEST_X_Y))
E         + -- NB: here optimizer will use index __NOT__ from view V3 DDL:
E         + -- PLAN (V4 V_TEST3 T INDEX (TEST_X_ASC))
E         + select * from v_test4 v4; -- 15
E         + PLAN (V4 V_TEST3 T INDEX (TEST_X_ASC))
E         + select * from v_test4 v4 PLAN (V4 V_TEST3 T INDEX (TEST_X_Y)); -- 16
E         + PLAN (V4 V_TEST3 T INDEX (TEST_X_Y))

tests/bugs/core_0203_test.py:124: 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 4.0.6.3215 2025.06.25 6461d F F 1012 791 2025.06.29 07:30:45.976 2025.06.29 07:30:46.988 2025.06.29 06:24:10.167 2025.06.29 06:24:10.958
2 4.0.6.3214 2025.06.21 e11f6 P P 694 573 2025.06.25 07:00:28.848 2025.06.25 07:00:29.542 2025.06.25 05:57:45.476 2025.06.25 05:57:46.049
3 4.0.6.3213 2025.06.14 f015c P P 751 589 2025.06.21 06:36:53.133 2025.06.21 06:36:53.884 2025.06.21 05:24:20.569 2025.06.21 05:24:21.158
4 4.0.6.3212 2025.06.11 bc50d P P 837 610 2025.06.14 07:35:00.097 2025.06.14 07:35:00.934 2025.06.14 06:31:24.565 2025.06.14 06:31:25.175
5 4.0.6.3208 2025.06.10 19fe3 P P 924 736 2025.06.11 06:15:18.008 2025.06.11 06:15:18.932 2025.06.11 05:05:16.071 2025.06.11 05:05:16.807
6 4.0.6.3207 2025.06.07 205ff P P 862 633 2025.06.10 06:16:52.508 2025.06.10 06:16:53.370 2025.06.10 05:05:10.344 2025.06.10 05:05:10.977
7 4.0.6.3206 2025.05.22 d7d10 P P 956 693 2025.06.06 06:22:38.363 2025.06.06 06:22:39.319 2025.06.06 05:01:00.326 2025.06.06 05:01:01.019
8 4.0.6.3205 2025.05.07 00148 P P 930 711 2025.05.21 06:15:54.279 2025.05.21 06:15:55.209 2025.05.21 05:03:26.142 2025.05.21 05:03:26.853
9 4.0.6.3204 2025.05.06 35b85 P P 893 731 2025.05.07 05:49:12.938 2025.05.07 05:49:13.831 2025.05.07 04:38:20.647 2025.05.07 04:38:21.378
10 4.0.6.3203 2025.05.05 c2cbd P P 920 674 2025.05.06 05:46:10.341 2025.05.06 05:46:11.261 2025.05.06 04:35:37.918 2025.05.06 04:35:38.592
11 4.0.6.3200 2025.04.18 7ef56 P P 892 699 2025.05.01 05:37:35.270 2025.05.01 05:37:36.162 2025.05.01 04:27:48.282 2025.05.01 04:27:48.981
12 4.0.6.3199 2025.04.14 33a10 P P 898 767 2025.04.18 05:48:09.603 2025.04.18 05:48:10.501 2025.04.18 04:36:56.503 2025.04.18 04:36:57.270
13 4.0.6.3198 2025.04.13 64a7f P P 815 578 2025.04.14 04:58:43.364 2025.04.14 04:58:44.179 2025.04.14 03:53:05.451 2025.04.14 03:53:06.029
14 4.0.6.3195 2025.03.28 b9faf P P 819 649 2025.04.13 04:47:18.261 2025.04.13 04:47:19.080 2025.04.13 03:41:42.751 2025.04.13 03:41:43.400
15 4.0.6.3194 2025.03.26 912aa P P 802 604 2025.03.28 05:24:14.087 2025.03.28 05:24:14.889 2025.03.28 04:16:27.890 2025.03.28 04:16:28.494
16 4.0.6.3193 2025.03.20 80234 P P 907 721 2025.03.24 05:39:24.145 2025.03.24 05:39:25.052 2025.03.24 04:27:25.860 2025.03.24 04:27:26.581
17 4.0.6.3192 2025.03.13 2a9da P P 728 501 2025.03.17 02:21:58.911 2025.03.17 02:21:59.639 2025.03.17 01:09:41.715 2025.03.17 01:09:42.216
18 4.0.6.3191 2025.03.10 3d9fd P P 730 508 2025.03.13 05:29:46.434 2025.03.13 05:29:47.164 2025.03.13 04:17:09.222 2025.03.13 04:17:09.730
19 4.0.6.3190 2025.02.25 c9928 P P 752 441 2025.03.09 05:16:45.320 2025.03.09 05:16:46.072 2025.03.09 04:05:40.813 2025.03.09 04:05:41.254
20 4.0.6.3189 2025.02.22 3fb0b P P 635 451 2025.02.25 05:07:52.035 2025.02.25 05:07:52.670 2025.02.25 03:57:43.346 2025.02.25 03:57:43.797
21 4.0.6.3188 2025.02.21 8ee1c P P 732 534 2025.02.22 05:04:38.873 2025.02.22 05:04:39.605 2025.02.22 03:51:57.574 2025.02.22 03:51:58.108
22 4.0.6.3186 2025.02.19 92cb6 P P 651 543 2025.02.20 01:59:00.515 2025.02.20 01:59:01.166 2025.02.20 00:48:39.881 2025.02.20 00:48:40.424
23 4.0.6.3185 2025.02.16 9cac4 P P 1057 529 2025.02.16 22:36:43.748 2025.02.16 22:36:44.805 2025.02.16 21:16:50.784 2025.02.16 21:16:51.313
24 4.0.6.3183 2025.02.04 bf738 P P 658 449 2025.02.14 05:18:44.515 2025.02.14 05:18:45.173 2025.02.14 04:06:43.989 2025.02.14 04:06:44.438
25 4.0.6.3181 2025.02.01 00b64 P P 607 418 2025.02.04 05:22:22.439 2025.02.04 05:22:23.046 2025.02.04 04:02:24.917 2025.02.04 04:02:25.335
26 4.0.6.3180 2025.01.27 2edb8 P P 729 431 2025.01.28 05:13:00.384 2025.01.28 05:13:01.113 2025.01.28 04:02:42.503 2025.01.28 04:02:42.934
27 4.0.6.3179 2025.01.24 008d4 P P 762 508 2025.01.25 05:08:58.432 2025.01.25 05:08:59.194 2025.01.25 03:58:12.099 2025.01.25 03:58:12.607
28 4.0.6.3178 2025.01.20 ec94d P P 984 453 2025.01.24 05:08:43.459 2025.01.24 05:08:44.443 2025.01.24 03:58:41.518 2025.01.24 03:58:41.971
29 4.0.6.3176 2025.01.16 79cc1 P P 746 475 2025.01.20 04:59:46.027 2025.01.20 04:59:46.773 2025.01.20 03:49:41.240 2025.01.20 03:49:41.715
30 4.0.6.3175 2025.01.15 91361 P P 698 484 2025.01.16 04:59:11.005 2025.01.16 04:59:11.703 2025.01.16 03:49:52.026 2025.01.16 03:49:52.510
31 4.0.6.3174 2024.12.23 ffd39 P P 676 513 2025.01.14 05:03:41.537 2025.01.14 05:03:42.213 2025.01.14 03:53:34.387 2025.01.14 03:53:34.900
32 4.0.6.3173 2024.12.19 60b32 P P 520 372 2024.12.21 16:53:55.903 2024.12.21 16:53:56.423 2024.12.21 15:57:38.280 2024.12.21 15:57:38.652
33 4.0.6.3172 2024.12.11 33f5d P P 497 386 2024.12.16 03:47:07.134 2024.12.16 03:47:07.631 2024.12.16 02:50:50.017 2024.12.16 02:50:50.403
34 4.0.6.3171 2024.12.10 ab1d4 P P 526 358 2024.12.11 03:33:38.252 2024.12.11 03:33:38.778 2024.12.11 02:37:46.500 2024.12.11 02:37:46.858
35 4.0.6.3170 2024.12.02 68abd P P 526 373 2024.12.04 03:22:13.986 2024.12.04 03:22:14.512 2024.12.04 02:26:41.664 2024.12.04 02:26:42.037
36 4.0.6.3169 2024.11.28 1673f P P 613 357 2024.11.30 03:35:52.333 2024.11.30 03:35:52.946 2024.11.30 02:40:11.941 2024.11.30 02:40:12.298
37 4.0.6.3168 2024.11.07 f67e2 P P 529 370 2024.11.27 03:12:24.636 2024.11.27 03:12:25.165 2024.11.27 02:18:41.427 2024.11.27 02:18:41.797
38 4.0.6.3167 2024.11.04 c9228 P P 561 353 2024.11.05 05:00:53.856 2024.11.05 05:00:54.417 2024.11.05 04:08:16.752 2024.11.05 04:08:17.105
39 4.0.6.3165 2024.10.23 b0c36 P P 525 348 2024.11.04 05:04:48.412 2024.11.04 05:04:48.937 2024.11.04 04:11:20.520 2024.11.04 04:11:20.868
40 4.0.6.3164 2024.10.17 35344 P P 538 366 2024.10.23 05:17:34.364 2024.10.23 05:17:34.902 2024.10.23 04:22:23.072 2024.10.23 04:22:23.438
41 4.0.6.3163 2024.10.14 2e35e P P 524 376 2024.10.15 05:05:57.139 2024.10.15 05:05:57.663 2024.10.15 04:12:26.652 2024.10.15 04:12:27.028
42 4.0.6.3161 2024.10.05 91502 P P 588 387 2024.10.06 03:06:22.592 2024.10.06 03:06:23.180 2024.10.06 02:05:19.933 2024.10.06 02:05:20.320
43 4.0.6.3159 2024.10.01 85136 P P 524 374 2024.10.02 00:14:00.548 2024.10.02 00:14:01.072 2024.10.01 23:16:29.497 2024.10.01 23:16:29.871
44 4.0.6.3158 2024.09.30 d2c33 P P 540 429 2024.10.01 05:14:00.697 2024.10.01 05:14:01.237 2024.10.01 04:18:59.540 2024.10.01 04:18:59.969
45 4.0.6.3157 2024.09.24 3bb2e P P 606 433 2024.09.30 05:17:27.192 2024.09.30 05:17:27.798 2024.09.30 04:21:29.779 2024.09.30 04:21:30.212
46 4.0.6.3156 2024.09.21 f6416 P P 565 384 2024.09.24 03:23:16.061 2024.09.24 03:23:16.626 2024.09.24 02:27:37.582 2024.09.24 02:27:37.966
47 4.0.6.3155 2024.09.20 1ed0c P P 566 395 2024.09.21 03:18:25.508 2024.09.21 03:18:26.074 2024.09.21 02:23:02.640 2024.09.21 02:23:03.035
48 4.0.6.3151 2024.09.09 1b77f P P 849 600 2024.09.17 05:27:30.501 2024.09.17 05:27:31.350 2024.09.17 04:08:36.704 2024.09.17 04:08:37.304
49 4.0.6.3149 2024.09.04 32ce9 P P 988 617 2024.09.06 05:35:44.261 2024.09.06 05:35:45.249 2024.09.06 04:16:38.551 2024.09.06 04:16:39.168
50 4.0.6.3148 2024.09.02 4be5c P P 874 605 2024.09.04 07:26:46.510 2024.09.04 07:26:47.384 2024.09.04 05:55:18.801 2024.09.04 05:55:19.406
51 4.0.6.3147 2024.08.30 5ffd7 P P 935 562 2024.09.02 06:41:41.865 2024.09.02 06:41:42.800 2024.09.02 05:07:34.619 2024.09.02 05:07:35.181
52 4.0.6.3146 2024.08.27 38582 P P 907 534 2024.08.30 06:24:34.691 2024.08.30 06:24:35.598 2024.08.30 04:54:39.058 2024.08.30 04:54:39.592
53 4.0.6.3145 2024.08.21 87240 P P 1001 568 2024.08.27 05:10:50.439 2024.08.27 05:10:51.440 2024.08.27 03:48:35.088 2024.08.27 03:48:35.656
54 4.0.6.3144 2024.08.20 5a3b7 P P 962 691 2024.08.21 06:09:54.078 2024.08.21 06:09:55.040 2024.08.21 04:41:28.674 2024.08.21 04:41:29.365
55 4.0.6.3142 2024.08.11 b9f39 P P 771 518 2024.08.19 03:44:40.700 2024.08.19 03:44:41.471 2024.08.19 02:40:42.520 2024.08.19 02:40:43.038
56 4.0.6.3141 2024.08.09 6d39f P P 753 550 2024.08.10 03:38:18.171 2024.08.10 03:38:18.924 2024.08.10 02:35:52.929 2024.08.10 02:35:53.479
57 4.0.5.3140 2024.08.06 64f3a P P 660 458 2024.08.09 03:33:57.527 2024.08.09 03:33:58.187 2024.08.09 02:31:58.798 2024.08.09 02:31:59.256
58 4.0.5.3139 2024.08.01 3bc8b P P 415 281 2024.08.06 02:52:33.272 2024.08.06 02:52:33.687 2024.08.06 01:57:06.165 2024.08.06 01:57:06.446
59 4.0.5.3136 2024.07.31 e41ec P P 513 320 2024.08.01 02:52:16.977 2024.08.01 02:52:17.490 2024.08.01 01:57:15.130 2024.08.01 01:57:15.450
60 4.0.5.3135 2024.07.26 b4981 P P 456 321 2024.07.30 02:49:43.947 2024.07.30 02:49:44.403 2024.07.30 01:54:49.466 2024.07.30 01:54:49.787
61 4.0.5.3129 2024.07.24 b8184 P P 471 319 2024.07.25 02:47:34.995 2024.07.25 02:47:35.466 2024.07.25 01:52:36.679 2024.07.25 01:52:36.998
62 4.0.5.3128 2024.07.13 aa318 P P 494 360 2024.07.24 02:53:46.459 2024.07.24 02:53:46.953 2024.07.24 01:58:32.132 2024.07.24 01:58:32.492
63 4.0.5.3127 2024.07.10 eace3 P P 480 332 2024.07.13 02:45:24.933 2024.07.13 02:45:25.413 2024.07.13 01:51:19.453 2024.07.13 01:51:19.785
64 4.0.5.3123 2024.06.24 c27c6 P P 505 321 2024.07.10 02:39:42.398 2024.07.10 02:39:42.903 2024.07.10 01:46:05.033 2024.07.10 01:46:05.354
65 4.0.5.3112 2024.06.13 d2e61 P P 449 343 2024.06.22 02:40:59.065 2024.06.22 02:40:59.514 2024.06.22 01:47:21.994 2024.06.22 01:47:22.337
66 4.0.5.3098 2024.05.09 4c3ec P P 621 438 2024.05.14 07:12:44.353 2024.05.14 07:12:44.974 2024.05.14 06:17:56.404 2024.05.14 06:17:56.842
67 4.0.5.3092 2024.05.06 bbc47 P P 449 294 2024.05.08 18:37:38.312 2024.05.08 18:37:38.761 2024.05.08 17:49:24.695 2024.05.08 17:49:24.989
68 4.0.5.3091 2024.04.29 062a7 P P 435 254 2024.05.01 11:22:43.635 2024.05.01 11:22:44.070 2024.05.01 10:35:10.966 2024.05.01 10:35:11.220
69 4.0.5.3089 2024.04.19 08c92 P P 456 265 2024.04.27 13:21:04.277 2024.04.27 13:21:04.733 2024.04.27 12:33:03.336 2024.04.27 12:33:03.601

Elapsed time, ms. Chart for last 69 runs:

Last commits information (all timestamps in UTC):