I have some tables with generated values using the
GenerationType.TABLE strategy. For some reason the table is not
populated when ran on H2. It works fine on MySQL.

Here's the definition of one of those values:

    @Id
    @Basic(optional = false)
    @GeneratedValue(strategy = GenerationType.TABLE, generator =
"XincoCoreACEGen")
    @TableGenerator(name = "XincoCoreACEGen", table = "xinco_id",
    pkColumnName = "tablename",
    valueColumnName = "last_id",
    pkColumnValue = "xinco_core_ace",
    allocationSize = 1,
    initialValue=1000)

It used to work with previous version of H2 but not with latest
(1.3.161)

Any ideas?

-- 
You received this message because you are subscribed to the Google Groups "H2 
Database" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/h2-database?hl=en.

Reply via email to