Good morning all -

I just updated to v2.1.0 from v2.0.1 and noticed that a query using TYPE()
<> X is no longer working. I have an abstract base class and three
subclasses. My query asks for all but one of the subclasses, like this:

SELECT d FROM AbstractClass d WHERE d._state = :state AND TYPE(d) <>
SubClassThree

When I run this query with v2.1.0, the SQL is generated as if the query said
"TYPE(d) = SubClassThree", resulting in a match on
the SubClassThree discriminator. I found a work-around using NOT IN:

SELECT d FROM AbstractClass d WHERE d._state = :state AND TYPE(d) NOT IN
(SubClassThree)

If anyone would like additional information, please let me know.

Thanks,
Brian

Reply via email to