Re: Exponential notation bug - Mailing list pgsql-hackers

From Maciek Sakrejda
Subject Re: Exponential notation bug
Date
Msg-id CADXhmgTnGDTMBi-d5R3Ew0jfZ1UNPdshuvmJkwL1NxqvUahJZg@mail.gmail.com
Whole thread Raw
In response to Exponential notation bug  (Marcos Pegoraro <marcos@f10.com.br>)
Responses Re: Exponential notation bug
List pgsql-hackers
I took a look at simplifying this test case, and I think it comes down
to data types:

maciek=# select 9/10;
 ?column?
----------
        0
(1 row)

maciek=# select pg_typeof(10);
 pg_typeof
-----------
 integer
(1 row)

But:

maciek=# select 9/1e1;
        ?column?
------------------------
 0.90000000000000000000
(1 row)

maciek=# select pg_typeof(1e1);
 pg_typeof
-----------
 numeric
(1 row)

Does that explain the behavior you're seeing?



pgsql-hackers by date:

Previous
From: Melanie Plageman
Date:
Subject: Re: New criteria for autovacuum
Next
From: Robert Haas
Date:
Subject: Re: Exponential notation bug