wangyum commented on pull request #29022:
URL: https://github.com/apache/spark/pull/29022#issuecomment-654874240


   ```sql
   postgres=# CREATE TABLE test_float2 as SELECT 1.0F, 2.0D, 1.0e2, 1.0e;
   SELECT 1
   postgres=# \d test_float2;
                Table "public.test_float2"
     Column  |  Type   | Collation | Nullable | Default
   ----------+---------+-----------+----------+---------
    f        | numeric |           |          |
    d        | numeric |           |          |
    ?column? | numeric |           |          |
    e        | numeric |           |          |
   
   postgres=# select * from test_float2;
     f  |  d  | ?column? |  e
   -----+-----+----------+-----
    1.0 | 2.0 |      100 | 1.0
   (1 row)
   ```


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

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



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to