}
public void testCreateWithBigintPrimaryKey() throws Exception {
IPostPersistence posts = dbs.getDatabase1().posts();
long postId = Integer.MAX_VALUE * 2l;
assertTrue(posts.save(new Post(postId, "post title", System.currentTimeMillis(), 1, System.currentTimeMillis())));
posts.clearCacheById(postId);
Post foundPost = posts.find(postId);
assertNotNull("Post should be found from db by bigint id", foundPost);