Hmm, perhaps a matcher strategy bug, then, combined perhaps with subtly different database configurations between you and your coworker. Does the problem persist when you remove the <strategy/> element?
2015-09-30 17:30 GMT+02:00 Garret Wilson <[email protected]>: > On 9/30/2015 12:27 PM, Lukas Eder wrote: > >> ... >> Interesting. Can you show the full generator configuration? >> > > <generator> > <name>org.jooq.util.DefaultGenerator</name> > <database> > <name>org.jooq.util.postgres.PostgresDatabase</name> > <includes>.*</includes> > <excludes></excludes> > <schemata> > <schema> > <inputSchema>foodb</inputSchema> > </schema> > <schema> > <inputSchema>foodb_user</inputSchema> > </schema> > </schemata> > </database> > <strategy> > <matchers> > <fields> > <field> > <expression>^(.+):(.+)$</expression> > <fieldIdentifier> > <transform>UPPER</transform> > <expression>$1_$2</expression> > </fieldIdentifier> > <fieldSetter> > <transform>AS_IS</transform> > <expression>set$1_$2</expression> > </fieldSetter> > <fieldGetter> > <transform>AS_IS</transform> > <expression>get$1_$2</expression> > </fieldGetter> > </field> > </fields> > </matchers> > </strategy> > <target> > <packageName>com.example.foo.db.schema</packageName> > <directory>${project.build.directory}/generated-sources</directory> > </target> > </generator> > > > Garret > > -- > 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/d/optout. > -- 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/d/optout.
