When the JOOQ generator generates the records using database tables, It maps the 'float' type column to Double instead of Float Why?
Database: MySQL,
Create statement:
CREATE TABLE `product_attribute` (
`id` int NOT NULL auto_increment,
`value` float DEFAULT NULL,
PRIMARY KEY (`id`)
)