I have the following JPQL query:
@Query("select p FROM Partner p where p.partnerIdentifier IS NOT NULL")
List<Partner> findAfterDates();
This should return all Partner Entities that DO NOT have NULL for partnerIdentifier.
However, I am running the code and debugging, and I am seeing that the returned Collection contains entities that has null for this field.
Is this a bug in JPQL?