taiyang-li opened a new issue, #9176: URL: https://github.com/apache/incubator-gluten/issues/9176
### Description ``` sql select count(if(rand() % 2 = 0, 1, null)) from numbers(1000000000); 1 row in set. Elapsed: 1.560 sec. Processed 1.00 billion rows, 8.00 GB (640.82 million rows/s., 5.13 GB/s.) 1 row in set. Elapsed: 1.576 sec. Processed 1.00 billion rows, 8.00 GB (634.34 million rows/s., 5.07 GB/s.) 1 row in set. Elapsed: 1.559 sec. Processed 1.00 billion rows, 8.00 GB (641.51 million rows/s., 5.13 GB/s.) select countIf(rand() % 2 = 0) from numbers(1000000000); 1 row in set. Elapsed: 1.299 sec. Processed 1.00 billion rows, 8.00 GB (770.02 million rows/s., 6.16 GB/s.) 1 row in set. Elapsed: 1.332 sec. Processed 1.00 billion rows, 8.00 GB (750.76 million rows/s., 6.01 GB/s.) 1 row in set. Elapsed: 1.385 sec. Processed 1.00 billion rows, 8.00 GB (722.02 million rows/s., 5.78 GB/s.) ``` -- 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]
