CREATE TABLE `change_log` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`log` varchar(1023) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
`date_created` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8_unicode_ci;
@NotNull
public UInteger getId() {};
{"log" : "this is a log test"}
public Response createJsonChangeLog(@Valid ChangeLog changeLog) {}
--
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 jooq-user+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Awesome. Thanks for your prompt response. When could we expect the release of 3.8.0?
Another thing is that I wanna mock myEntityDao.insert(...) to test post methods instead of MockProvider or checking DSL query. However, all insert methods in DAOImpl.java are final and can't mocked... Is there any reason to make them final (and void)? Can we remove the final keyword as what you did for #4855?
Let me know if you want me to give more explanation
or post this to a separate email chain.