this happens because generated table is defined as
create table Entity ( ID numeric(19,2) not null, name varchar(255), primary key (ID) )
but the value of select next value for hibernate_sequence is e.g. -9223372036854775807, so it cannot fit in numeric(19,2)