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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]