Skip to content

Commit

Permalink
Try fixing GH conformance report target branch (#530)
Browse files Browse the repository at this point in the history
  • Loading branch information
alancai98 authored Jan 3, 2025
1 parent 5265376 commit 3bcbd2d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci_build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,12 @@ jobs:
# Download conformance report from target branch to create comparison report. If target branch has no conformance
# report, pull down target branch and rebuild conformance report.
- name: Download conformance report from target branch
uses: actions/download-artifact@v4
uses: dawidd6/action-download-artifact@v6
id: download-report
continue-on-error: true
with:
workflow: ci_build_test.yml
commit: ${{ github.event.pull_request.base.sha }}
# (If download of target branch report fails) Run the conformance tests (i.e. `cargo test`) and save to a JSON file.
- name: (If download of target branch conformance report fails) Checkout target branch
uses: actions/checkout@v3
Expand Down

1 comment on commit 3bcbd2d

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PartiQL (rust) Benchmark

Benchmark suite Current: 3bcbd2d Previous: 5265376 Ratio
arith_agg-avg 775357 ns/iter (± 3486) 773932 ns/iter (± 6814) 1.00
arith_agg-avg_distinct 851451 ns/iter (± 17128) 855520 ns/iter (± 14896) 1.00
arith_agg-count 819766 ns/iter (± 14831) 818071 ns/iter (± 17412) 1.00
arith_agg-count_distinct 845407 ns/iter (± 2536) 849442 ns/iter (± 3507) 1.00
arith_agg-min 825374 ns/iter (± 4595) 822004 ns/iter (± 2424) 1.00
arith_agg-min_distinct 847956 ns/iter (± 5507) 853339 ns/iter (± 10328) 0.99
arith_agg-max 828738 ns/iter (± 21200) 828995 ns/iter (± 9784) 1.00
arith_agg-max_distinct 860452 ns/iter (± 30143) 861131 ns/iter (± 2886) 1.00
arith_agg-sum 821936 ns/iter (± 19273) 825237 ns/iter (± 2225) 1.00
arith_agg-sum_distinct 846130 ns/iter (± 3172) 855031 ns/iter (± 3639) 0.99
arith_agg-avg-count-min-max-sum 965715 ns/iter (± 2888) 976810 ns/iter (± 10710) 0.99
arith_agg-avg-count-min-max-sum-group_by 1236946 ns/iter (± 7069) 1241180 ns/iter (± 6017) 1.00
arith_agg-avg-count-min-max-sum-group_by-group_as 1829539 ns/iter (± 27329) 1859476 ns/iter (± 33072) 0.98
arith_agg-avg_distinct-count_distinct-min_distinct-max_distinct-sum_distinct 1196788 ns/iter (± 27611) 1193405 ns/iter (± 6998) 1.00
arith_agg-avg_distinct-count_distinct-min_distinct-max_distinct-sum_distinct-group_by 1456576 ns/iter (± 12208) 1454080 ns/iter (± 7445) 1.00
arith_agg-avg_distinct-count_distinct-min_distinct-max_distinct-sum_distinct-group_by-group_as 2080475 ns/iter (± 64566) 2065311 ns/iter (± 6156) 1.01
parse-1 6009 ns/iter (± 84) 6171 ns/iter (± 25) 0.97
parse-15 49550 ns/iter (± 161) 51206 ns/iter (± 185) 0.97
parse-30 97891 ns/iter (± 449) 98373 ns/iter (± 273) 1.00
compile-1 4406 ns/iter (± 23) 4199 ns/iter (± 17) 1.05
compile-15 30729 ns/iter (± 512) 30584 ns/iter (± 224) 1.00
compile-30 63513 ns/iter (± 754) 63289 ns/iter (± 473) 1.00
plan-1 67492 ns/iter (± 866) 70864 ns/iter (± 345) 0.95
plan-15 1050170 ns/iter (± 14683) 1100699 ns/iter (± 48597) 0.95
plan-30 2097509 ns/iter (± 15284) 2205730 ns/iter (± 18177) 0.95
eval-1 12336116 ns/iter (± 142122) 12652855 ns/iter (± 173075) 0.97
eval-15 77700703 ns/iter (± 870774) 78722422 ns/iter (± 2049053) 0.99
eval-30 148051909 ns/iter (± 624231) 149051556 ns/iter (± 679275) 0.99
join 10297 ns/iter (± 62) 9873 ns/iter (± 216) 1.04
simple 2589 ns/iter (± 15) 2574 ns/iter (± 6) 1.01
simple-no 480 ns/iter (± 1) 450 ns/iter (± 2) 1.07
numbers 57 ns/iter (± 0) 57 ns/iter (± 0) 1
parse-simple 947 ns/iter (± 12) 979 ns/iter (± 31) 0.97
parse-ion 2618 ns/iter (± 9) 2666 ns/iter (± 8) 0.98
parse-group 7802 ns/iter (± 23) 7797 ns/iter (± 15) 1.00
parse-complex 20492 ns/iter (± 804) 20610 ns/iter (± 63) 0.99
parse-complex-fexpr 28492 ns/iter (± 316) 28041 ns/iter (± 137) 1.02

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.