Omega359 commented on PR #22482:
URL: https://github.com/apache/datafusion/pull/22482#issuecomment-4528968248

   ```
   # power scalar null result types
   query TTT
   select arrow_typeof(power(null, 64)),
          arrow_typeof(power(null, null)),
          arrow_typeof(power(2, null));
   ----
   Float64 Float64 Float64
   ```
   
   passes in main, fails in PR.
   
   ```
   3. query result mismatch:
   [SQL] select arrow_typeof(power(null, 64)),
          arrow_typeof(power(null, null)),
          arrow_typeof(power(2, null));
   [Diff] (-expected|+actual)
   -   Float64 Float64 Float64
   +   Null Null Float64
   at 
/home/bruce/dev/datafusion/datafusion/sqllogictest/test_files/scalar.slt:870
   ```


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