Skip to content

Hibernate join bug


Hibernate bug 1895 seems to be still there since 2006.
If, for instance, in Grails, such a syntax won’t work for you (it won’t):

def books = Book.findAll("FROM Book AS b JOIN Chapter AS c WHERE c.active = :isActive")

with a NullPointerException in “HqlSqlWalker.createFromJoinElement” — just use alternative join syntax, via WHERE:

def books = Book.executeQuery("select b FROM Book AS b, Chapter AS c WHERE c.active = :isActive")

Move “WITH” conditions to “WHERE” as needed.

One Comment

  1. fenuk wrote:

    hello, you helped me with some questions about Grails on stackoverflow.com.Thanks you.And a want ask you: we can speak more about Grails?

    P.S. Sorry, that I write message here, but i not find more better place on site 🙂

    Posted on 26-Nov-10 at 16:45 | Permalink

Post a Comment

Your email is never published nor shared.