When using a simple entity as follows:
@Entity
public class SimpleEntity {
@Id
private Integer id;
@Lob
private String value;
}
And then issuing the following HQL query:
List values = session.createQuery( "SELECT e FROM SimpleEntity e WHERE e.value = :value" )
.setParameter( "value", "One" )
.getResultList();
This fails with an error:
The hibernate stack trace:
I tried using the latest 9.4.1212 driver version and the same error occurs. |