pjain1 commented on issue #14360:
URL: https://github.com/apache/druid/issues/14360#issuecomment-1836652696

   ```
   with raw1 as (
     select
     "page",
     count(*)/2 as c
     from "wikipedia"
     GROUP BY 1
   ),
    raw2 as (
     select 
     "page",
     count(*)/2 as c
     from "wikipedia"
     GROUP BY 1
   )
   select
     r1.c-r2.c
   from raw1 r1
   left join raw2 r2
   on r1.page = r2.page
   ```
   
   This still fails in 28


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