alamb opened a new issue, #6955:
URL: https://github.com/apache/arrow-datafusion/issues/6955

   ### Describe the bug
   
   https://github.com/apache/arrow-datafusion/pull/6904 introduced a bug where 
`bit_and` when a GROUP BY will now return zero always
   
   This was found with the tests added in 
https://github.com/apache/arrow-datafusion/pull/6952
   
   ```
   External error: query result mismatch:
   [SQL] SELECT
     bit_and(c1),
     bit_and(c2),
     bit_and(c3),
     bit_or(c1),
     bit_or(c2),
     bit_or(c3),
     bit_xor(c1),
     bit_xor(c2),
     bit_xor(c3),
     tag
   FROM bit_aggregate_functions
   GROUP BY tag
   ORDER BY tag
   [Diff] (-expected|+actual)
   -   1 8 11 13 14 11 12 6 11 A
   -   33 11 NULL 33 11 NULL 33 11 NULL B
   +   0 0 0 13 14 11 12 6 11 A
   +   0 0 NULL 33 11 NULL 33 11 NULL B
   at tests/sqllogictests/test_files/aggregate.slt:1546
   ```
   
   ### To Reproduce
   
   _No response_
   
   ### Expected behavior
   
   _No response_
   
   ### Additional context
   
   _No response_


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

Reply via email to