vote up 1 vote down star

Simple rails app using Postgres DB, getting 'integer out of range' error when trying to insert 2176968859. Should be an easy fix to the migrations, but I'm not sure. Right now I've got...

create_table :targets do |t| t.integer :tid ...

flag

11% accept rate

3 Answers

vote up 2 vote down check

What's the question? You are overflowing. Use a bigint if you need numbers that big.

http://www.postgresql.org/docs/8.3/interactive/datatype-numeric.html

link|flag
Thanks nsanders. 'bigint' is what I was looking for. Sorry if I phrased the question poorly everyone! – Euwyn Jun 16 at 16:11
vote up 1 vote down

Note the range of allowed values for the integer type in http://www.postgresql.org/docs/8.3/interactive/datatype-numeric.html. I think you are going to have to use a bigint, decimal, or double precision.

link|flag
vote up 0 vote down

PostgreSQL integers are signed, there is no unsigned datatype - I bet that's your problem.

If you need larger values, use bigint. If bigint also isn't enough, use numeric - but use bigint rather than numeric unless you need the larger size or decimals, since it's much faster.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.