-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial partial AST pretty-printer (#471)
Initial partial AST pretty-printer
- Loading branch information
Showing
12 changed files
with
1,582 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,7 @@ | |
//! This API is currently unstable and subject to change. | ||
|
||
pub mod ast; | ||
|
||
pub mod pretty; | ||
|
||
pub mod visit; |
Oops, something went wrong.
a54868e
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PartiQL (rust) Benchmark
arith_agg-avg
768879
ns/iter (± 44474
)767550
ns/iter (± 25529
)1.00
arith_agg-avg_distinct
852871
ns/iter (± 4563
)853211
ns/iter (± 3789
)1.00
arith_agg-count
818561
ns/iter (± 24924
)811172
ns/iter (± 12702
)1.01
arith_agg-count_distinct
846734
ns/iter (± 3407
)848275
ns/iter (± 8242
)1.00
arith_agg-min
832601
ns/iter (± 5272
)815662
ns/iter (± 4178
)1.02
arith_agg-min_distinct
859514
ns/iter (± 2662
)850462
ns/iter (± 18696
)1.01
arith_agg-max
827881
ns/iter (± 8412
)821044
ns/iter (± 2913
)1.01
arith_agg-max_distinct
860484
ns/iter (± 2589
)859104
ns/iter (± 3372
)1.00
arith_agg-sum
823950
ns/iter (± 4769
)820101
ns/iter (± 15137
)1.00
arith_agg-sum_distinct
850306
ns/iter (± 2494
)854531
ns/iter (± 3329
)1.00
arith_agg-avg-count-min-max-sum
960769
ns/iter (± 2950
)966254
ns/iter (± 5223
)0.99
arith_agg-avg-count-min-max-sum-group_by
1270408
ns/iter (± 9721
)1236532
ns/iter (± 9954
)1.03
arith_agg-avg-count-min-max-sum-group_by-group_as
1880159
ns/iter (± 11463
)1814702
ns/iter (± 85856
)1.04
arith_agg-avg_distinct-count_distinct-min_distinct-max_distinct-sum_distinct
1240402
ns/iter (± 20711
)1227968
ns/iter (± 4560
)1.01
arith_agg-avg_distinct-count_distinct-min_distinct-max_distinct-sum_distinct-group_by
1581066
ns/iter (± 63203
)1582041
ns/iter (± 4251
)1.00
arith_agg-avg_distinct-count_distinct-min_distinct-max_distinct-sum_distinct-group_by-group_as
2187305
ns/iter (± 11171
)2170637
ns/iter (± 14894
)1.01
parse-1
4244
ns/iter (± 32
)4329
ns/iter (± 20
)0.98
parse-15
40550
ns/iter (± 352
)38661
ns/iter (± 519
)1.05
parse-30
78545
ns/iter (± 2822
)76090
ns/iter (± 138
)1.03
compile-1
4394
ns/iter (± 114
)4319
ns/iter (± 14
)1.02
compile-15
33209
ns/iter (± 207
)32940
ns/iter (± 127
)1.01
compile-30
68529
ns/iter (± 190
)68083
ns/iter (± 285
)1.01
plan-1
68549
ns/iter (± 487
)67448
ns/iter (± 2332
)1.02
plan-15
1078118
ns/iter (± 10086
)1059015
ns/iter (± 22871
)1.02
plan-30
2156664
ns/iter (± 8444
)2114208
ns/iter (± 9437
)1.02
eval-1
13199986
ns/iter (± 178346
)13323166
ns/iter (± 626795
)0.99
eval-15
88062096
ns/iter (± 1058303
)89188292
ns/iter (± 342895
)0.99
eval-30
168580958
ns/iter (± 556192
)169856980
ns/iter (± 1103692
)0.99
join
9884
ns/iter (± 93
)9820
ns/iter (± 138
)1.01
simple
2488
ns/iter (± 17
)2542
ns/iter (± 5
)0.98
simple-no
427
ns/iter (± 11
)427
ns/iter (± 1
)1
numbers
57
ns/iter (± 0
)57
ns/iter (± 0
)1
parse-simple
565
ns/iter (± 7
)578
ns/iter (± 8
)0.98
parse-ion
1750
ns/iter (± 9
)1811
ns/iter (± 4
)0.97
parse-group
5900
ns/iter (± 19
)6210
ns/iter (± 49
)0.95
parse-complex
14823
ns/iter (± 106
)15803
ns/iter (± 22
)0.94
parse-complex-fexpr
21985
ns/iter (± 877
)23725
ns/iter (± 142
)0.93
This comment was automatically generated by workflow using github-action-benchmark.