I am having some difficulty updating enum fields using update queries. It appears that whenever I update an enum field with a new value, the updated value is impossible to match on for new queries. The update query works fine for other data types, but not enums.
I have tried closing the EntityManager, the EntityManagerFactory, the application, but for some reason the field cannot be matched on in its new state.
Below is a test I'm using, where the "db" instance is just a class that handles instantiation, closing and transactions for the EntityManager.
@Test
public void test() {
db.execute(em -> em.createQuery("UPDATE Atmosphere SET setting = :setting WHERE id=:id", Atmosphere.class)
.setParameter("setting", Atmosphere.Setting.coast)
.setParameter("id", atmosphere1.getId()).executeUpdate());
List<Atmosphere> results = db.retrieve(em -> em.createQuery("SELECT FROM Atmosphere WHERE id = :id", Atmosphere.class)
.setParameter("id", atmosphere1).getResultList());
assertFalse(results.isEmpty()); // passes
assertEquals(Atmosphere.Setting.coast, results.get(0).getSetting()); // passes, the record is updated!
results = db.retrieve(em -> em.createQuery("SELECT FROM Atmosphere WHERE setting = :setting", Atmosphere.class)
.setParameter("setting", Atmosphere.Setting.coast)
.getResultList());
assertFalse(results.isEmpty()); // fails, no results!
}
I've inspected the row in the explorer tool as well, and can see that it is updated, but I still can't query it.
The only thing that seems to work is updating the record using EntityManager.merge()
.
EDIT: Turns out the issue only arises when using @Enumerated(EnumType.STRING)
on the entity's enum field. Removing this fixes the issue (in objectdb 2.7.6).
The following code seems to work properly: