ankitsultana opened a new issue, #10381:
URL: https://github.com/apache/pinot/issues/10381

   Repro:
   
   ```
   explain plan for select count(*) from userAttributes_OFFLINE WHERE (deviceOS 
is null)
   
   Execution Plan
   LogicalAggregate(group=[{}], EXPR$0=[$SUM0($0)])
     LogicalExchange(distribution=[hash])
       LogicalAggregate(group=[{}], EXPR$0=[COUNT()])
         LogicalValues(tuples=[[]])
   ```
   
   ```
   explain plan for select count(*) from userAttributes_OFFLINE WHERE (deviceOS 
is null or deviceOS IN ('macos'))
   
   Execution Plan
   LogicalAggregate(group=[{}], EXPR$0=[$SUM0($0)])
     LogicalExchange(distribution=[hash])
       LogicalAggregate(group=[{}], EXPR$0=[COUNT()])
         LogicalProject(deviceOS=[$5])
           LogicalFilter(condition=[=($5, 'macos')])
             LogicalTableScan(table=[[userAttributes_OFFLINE]])
   ```
   
   cc: @walterddr 


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