Hello Lucas 2013/7/5 <[email protected]>
> Hi all, > > I dont know how to report bug to JOOQ > The user group is fine, or you can create a GitHub issue: https://github.com/jOOQ/jOOQ/issues/new > and I problem when generating classes, > when I use > <includes>.*A_TYPE.*,.*B_TYPE.*</includes> > no classes are generated I think the source of bug is > org.jooq.util.GenerationTool : run(Configuration) - line 234, because > includes string is not splitted with "," > Yes, in jOOQ 3.0, support for comma-separated regular expressions was removed: https://github.com/jOOQ/jOOQ/issues/2076 http://www.jooq.org/doc/3.1/manual/reference/migrating-to-3.0/#N136F7 This is because the comma adds no value compared to the pipe character, and there were issues with database objects whose actual name contained a comma. Your expression should read <includes>.*A_TYPE.*|.*B_TYPE.*</includes> Cheers Lukas -- You received this message because you are subscribed to the Google Groups "jOOQ User Group" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
