Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp
Hibernate version: 3.2.6.ga
Name and version of the database you are using: hsqldb 1.8.0.7
Mapping documents:
<id name="id" unsaved-value="null">
<generator class="sequence">
<param name="sequence">mysequence</param>
<param name="parameters">START WITH 1</param>
</generator>
</id>
I just did upgrade from hibernate core 3.2.1.ga to 3.2.6.ga and figured some of my sequences are being generated starting with 0, unless I explicitly placed
<param name="parameters">START WITH 1</param>
in my mapping.
Is this a bug in 3.2.6.ga ? Is there any better way to bypass this sequence generation issue?
Thanks.