if (!(dict instanceof InformixDictionary)) {
props.put("javax.persistence.lock.timeout", 5000);
}
em.getTransaction().begin();
getLog().trace("Main: refresh with force increment");
em.refresh(ve, LockModeType.PESSIMISTIC_FORCE_INCREMENT, props);
getLog().trace("Main: commit");
em.getTransaction().commit();
getLog().trace("Main: done commit");
fail("Expected LockTimeoutException");
} catch (Throwable t) {