taiyang-li commented on issue #9176: URL: https://github.com/apache/incubator-gluten/issues/9176#issuecomment-2764978130
``` sql select sum(if(rand() % 2 = 0, number, null)) from numbers(1000000000); 1 row in set. Elapsed: 2.214 sec. Processed 1.00 billion rows, 8.00 GB (451.60 million rows/s., 3.61 GB/s.) 1 row in set. Elapsed: 2.560 sec. Processed 1.00 billion rows, 8.00 GB (390.70 million rows/s., 3.13 GB/s.) 1 row in set. Elapsed: 2.214 sec. Processed 1.00 billion rows, 8.00 GB (451.60 million rows/s., 3.61 GB/s.) select sumIf(number, rand() % 2 = 0) from numbers(1000000000); 1 row in set. Elapsed: 1.369 sec. Processed 1.00 billion rows, 8.00 GB (730.54 million rows/s., 5.84 GB/s.) 1 row in set. Elapsed: 1.383 sec. Processed 1.00 billion rows, 8.00 GB (723.05 million rows/s., 5.78 GB/s.) 1 row in set. Elapsed: 1.412 sec. Processed 1.00 billion rows, 8.00 GB (708.20 million rows/s., 5.67 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]
