public void testLargeValue() throws Exception
{
BigintTypePeer.doDelete(new Criteria());
long longValue = 8771507845873286l;
BigintType bigintType = new BigintType();
bigintType.setBigintValue(longValue);
bigintType.save();
List<BigintType> bigintTypeList = BigintTypePeer.doSelect(new Criteria());
BigintType readBigintType = bigintTypeList.get(0);
assertEquals(bigintType.getId(), readBigintType.getId());
assertEquals(longValue, readBigintType.getBigintValue());
}