I'm attempting to write some JUnit tests against a hypersonic in-memory database (HSQLDB) using the familiar Spring + Hibernate set-up. I am getting stuck on one of our entities that has a <version generated="always" /> tag. As best I can tell, Hypersonic does not support automatically populating such columns. Is there another in-memory solution that can handle such versioning? Alternatively, is there some best practice or technique for handling this problem?
Thanks!