Github user davies commented on a diff in the pull request:

    https://github.com/apache/spark/pull/13188#discussion_r63968968
  
    --- Diff: 
sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/parquet/tpcds/queries/q95.sql
 ---
    @@ -0,0 +1,28 @@
    +WITH ws_wh AS
    +(SELECT
    +    ws1.ws_order_number,
    +    ws1.ws_warehouse_sk wh1,
    +    ws2.ws_warehouse_sk wh2
    +  FROM web_sales ws1, web_sales ws2
    +  WHERE ws1.ws_order_number = ws2.ws_order_number
    +    AND ws1.ws_warehouse_sk <> ws2.ws_warehouse_sk)
    +SELECT count(DISTINCT ws_order_number) AS ` ORDER count`
    +, sum(ws_ext_ship_cost) AS `total shipping COST `
    +, sum(ws_net_profit) AS `total net profit`
    +FROM
    +web_sales ws1, date_dim, customer_address, web_site
    +WHERE
    +d_date BETWEEN '1999-02-01' AND
    +date_add( CAST ('1999-02-01' AS DATE ), 60)
    +AND ws1.ws_ship_date_sk = d_date_sk
    --- End diff --
    
    indents?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to