Why doesn't this polymorphic query work?
String hql = """
FROM User u
WHERE
u.type.class = :typeClass
"""
return User.executeQuery(hql, [typeClass:Super])
all i get is the following exception:
Stacktrace follows:
java.lang.ClassCastException: java.lang.Class cannot be cast to java.lang.Integer
....
Update The error only seems to occur when i try to add the class as a named argument. eg, i dont get an error with this code:
String hql = """
FROM User u
WHERE
u.type.class = Super
"""
return User.executeQuery(hql)
Update2
This issue has baffled me. And now i don't care to use any more time on it. This is what i ended up with doing:
def typeClass = Super.class.name
String hql = """
FROM User u
WHERE
u.type.class = $typeClass
"""
return UserMedia.executeQuery(hql)
Really strange, no matter what i did when trying to pass the class or class.name i always would get the error. With and without multiline groovy string.