You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2021/07/14 06:01:17 UTC

[GitHub] [arrow-datafusion] houqp commented on issue #699: Datafusion: math function does not support array type f32

houqp commented on issue #699:
URL: https://github.com/apache/arrow-datafusion/issues/699#issuecomment-879615545


   Can confirm postgresql has the same generic typed behavior:
   
   ```
   select
   pg_typeof(sqrt(CAST('2' AS NUMERIC))),
   pg_typeof(sqrt(CAST('2' AS DOUBLE PRECISION)));
   ```
   
   Output:
   
   | pg_typeof | pg_typeof        |
   | --------- | ---------------- |
   | numeric   | double precision |
   


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org