Robert Haas <robertmh...@gmail.com> writes: > I don't think any of these cases should be allowed. Surely if we > allowed 384.234 to be inserted into an integer column, everyone would > say that we'd lost our minds.
regression=# create table itable (f1 int); CREATE TABLE regression=# insert into itable values (384.234); INSERT 0 1 regression=# table itable; f1 ----- 384 (1 row) It's always worked like that, and nobody's complained about it. I suspect, in fact, that one could find chapter and verse in the SQL spec that requires it, just like "numeric" values should get rounded if you write too many digits. regards, tom lane