You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2020/12/10 20:03:05 UTC

[GitHub] [arrow] seddonm1 commented on pull request #8880: ARROW-10674: [Rust][Parquet] Add Decimal to ArrayBuilderReader

seddonm1 commented on pull request #8880:
URL: https://github.com/apache/arrow/pull/8880#issuecomment-742764143


   The TPC-H queries are fairly basic but do decimal operations like these which I think are all decimal type: 
   
   ```sql
                   sum(l_quantity) as sum_qty,
                   sum(l_extendedprice) as sum_base_price,
                   sum(l_extendedprice * (1 - l_discount)) as sum_disc_price,
                   sum(l_extendedprice * (1 - l_discount) * (1 + l_tax)) as sum_charge,
                   avg(l_quantity) as avg_qty,
                   avg(l_extendedprice) as avg_price,
                   avg(l_discount) as avg_disc,
   ```


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

For queries about this service, please contact Infrastructure at:
users@infra.apache.org