You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-dev@db.apache.org by ac...@comcast.net on 2005/01/17 17:13:05 UTC

Hibernate with 10.0.2.1: one problem solved, sort of

In the class FumTest, one of the tests "testCompositeKeyPathExpressions" has a block that is not executed for some dialects (of course there is no explanation as to why those dialects are skipped).

The block in question does not work for Derby, so by adding:

  && !(getDialect() instanceof DerbyDialect)

to the end of the "if" statement, the test now passes.

I don't understand enough about Hibernate yet to know what the significance is of the skipped block.