xzj7019 commented on code in PR #37823:
URL: https://github.com/apache/doris/pull/37823#discussion_r1706472225


##########
regression-test/suites/tpcds_sf1_unique_p1/sql/q24_1.sql:
##########
@@ -1,46 +1,46 @@
-WITH
-  ssales AS (
-   SELECT
-     c_last_name
-   , c_first_name
-   , s_store_name
-   , ca_state
-   , s_state
-   , i_color
-   , i_current_price
-   , i_manager_id
-   , i_units
-   , i_size
-   , sum(ss_net_paid) netpaid
-   FROM
-     store_sales
-   , store_returns
-   , store
-   , item
-   , customer
-   , customer_address
-   WHERE (ss_ticket_number = sr_ticket_number)
-      AND (ss_item_sk = sr_item_sk)
-      AND (ss_customer_sk = c_customer_sk)
-      AND (ss_item_sk = i_item_sk)
-      AND (ss_store_sk = s_store_sk)
-      AND (c_birth_country = upper(ca_country))
-      AND (s_zip = ca_zip)
-      AND (s_market_id = 8)
-   GROUP BY c_last_name, c_first_name, s_store_name, ca_state, s_state, 
i_color, i_current_price, i_manager_id, i_units, i_size
-)
-SELECT
-  c_last_name
-, c_first_name
-, s_store_name
-, sum(netpaid) paid
-FROM
-  ssales
-WHERE (i_color = 'pale')
-GROUP BY c_last_name, c_first_name, s_store_name
-HAVING (sum(netpaid) > (
-      SELECT (CAST('0.05' AS DECIMAL(5,2)) * avg(netpaid))
-      FROM
-        ssales
-   ))
-ORDER BY c_last_name, c_first_name, s_store_name
+-- WITH

Review Comment:
   why comments this test? can just add the hint to disable the local shuffle?



-- 
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: commits-unsubscr...@doris.apache.org

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


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

Reply via email to