Open
Description
A (non-nullable) field which was defined in mySql schema as bit(1) generated the following:
@column(name = ""xxx"", nullable = true)
private boolean xxx;
This resulted in an exception when a null value was assigned to the field
Instead, the field should have been created using the Boolean class:
@column(name = ""xxx"", nullable = true)
private Boolean xxx;
Metadata
Metadata
Assignees
Labels
No labels