xudong963 commented on PR #20904:
URL: https://github.com/apache/datafusion/pull/20904#issuecomment-4286930570

   ```
   select count(*) 
   from ((select distinct c_last_name, c_first_name, d_date
          from store_sales, date_dim, customer
          where store_sales.ss_sold_date_sk = date_dim.d_date_sk
            and store_sales.ss_customer_sk = customer.c_customer_sk
            and d_month_seq between 1189 and 1189+11)
          except
         (select distinct c_last_name, c_first_name, d_date
          from catalog_sales, date_dim, customer
          where catalog_sales.cs_sold_date_sk = date_dim.d_date_sk
            and catalog_sales.cs_bill_customer_sk = customer.c_customer_sk
            and d_month_seq between 1189 and 1189+11)
          except
         (select distinct c_last_name, c_first_name, d_date
          from web_sales, date_dim, customer
          where web_sales.ws_sold_date_sk = date_dim.d_date_sk
            and web_sales.ws_bill_customer_sk = customer.c_customer_sk
            and d_month_seq between 1189 and 1189+11)
   ) cool_cust
   ;
   ```
   
   I didn't find semi-anti joins for the query. I guess it might be related to 
the count(*) gets a stat directly


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