2014-12-11 4:23 GMT+01:00 <[email protected]>: > I would assume it would be better if the code responsible (within context) > for code generation is case insensitive, it might save new users some time. >
Yes, it might save new users (or any users) some time, indeed, because many DDLs are indeed case-insensitive, and the risk of collisions between "COLUMN" and "column" is rather slim. Perhaps we should wrap all regular expressions from the code generation configuration in *(?i: ... )* per default, and allow users to explicitly specify case-sensitive sections with *(?-i: ... )*. Obviously, this behaviour can be turned off again via a new configuration flag... I've registered an issue for this: https://github.com/jOOQ/jOOQ/issues/3860 -- 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.
