taiyang-li commented on PR #9198:
URL: 
https://github.com/apache/incubator-gluten/pull/9198#issuecomment-2769011246

   Performance tests
   
   ``` sql 
   CREATE TEMPORARY VIEW lineitem
   USING org.apache.spark.sql.parquet
   OPTIONS (
     path  "/data1/liyang/tpch/tpch-data-sf1/lineitem"
   ) ; 
   
   select 
   sum(l_quantity * 1.234), 
   sum(1.234 * l_tax), 
   sum(l_extendedprice / 1.234)
   from lineitem;  
   
   After 
   1 row selected (0.3 seconds)
   1 row selected (0.292 seconds)
   1 row selected (0.296 seconds)
   
   Before
   1 row selected (0.348 seconds)
   1 row selected (0.355 seconds)
   1 row selected (0.34 seconds)
   
   ```


-- 
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]

Reply via email to