zhztheplayer opened a new pull request, #5889:
URL: https://github.com/apache/incubator-gluten/pull/5889
This just simplifies the representation of test report of subcommand
`queries-compare`.
Before:
```
...
| Query ID| Was Passed| Expected Row Count| Actual Row Count| Baseline
Planning Time (Millis)| Planning Time (Millis)| Baseline Query Time (Millis)|
Query Time (Millis)| Query Time Variation|
| q1| true| 100| 100|
967| 184| 3530|
2372| 48.82%|
| q2| true| 2513| 2513|
275| 182| 1916|
1516| 26.39%|
| q3| true| 100| 100|
38| 54| 984|
726| 35.54%|
| q4| true| 100| 100|
577| 496| 11244|
4606| 144.12%|
| q5| true| 100| 100|
340| 159| 2996|
1970| 52.08%|
...
```
After:
```
...
| Query ID| Passed| Row Count (Vanilla -> Gluten)| Planning Time / ms
(Vanilla -> Gluten)| Query Time / ms (Vanilla -> Gluten)| Speedup|
| q1| true| 100 -> 100|
1077 -> 259| 4037 -> 2786| +44.90%|
| q2| true| 2513 -> 2513|
310 -> 186| 2432 -> 1911| +27.26%|
| q3| true| 100 -> 100|
47 -> 35| 1162 -> 496| +134.27%|
| q4| true| 100 -> 100|
640 -> 534| 15413 -> 5249| +193.64%|
| q5| true| 100 -> 100|
398 -> 166| 3731 -> 1671| +123.28%|
...
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]