postgresql - integer out of range
问题 Not the slightest idea why the hell this is happening.. I've set up a table accordingly: CREATE TABLE raw ( id SERIAL, regtime float NOT NULL, time float NOT NULL, source varchar(15), sourceport INTEGER, destination varchar(15), destport INTEGER, blocked boolean ); ... + index and grants I've successfully used this table for a while now, and all of a sudden the following insert doesn't work any longer.. INSERT INTO raw( time, regtime, blocked, destport, sourceport, source, destination )