We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
char
Apparently, postgres disallows char fields with a 0 (default) value, resulting in interesting issues like:
0
Suppressed: org.hibernate.exception.DataException: could not execute statement [ERROR: invalid byte sequence for encoding "UTF8": 0x00 Where: unnamed portal parameter $19] [insert into ExampleEntity (arrayBlob,date,enumeration,lobString,localDate,localDateTime,somethingLocalTime,longString1,longString2,longString3,longString4,manyToOne_id,contents,mimeType,name,oneToOneOwning_id,primitiveBoolean,primitiveByte,primitiveChar,primitiveDouble,primitiveFloat,primitiveInt,primitiveLong,primitiveShort,requiredString,sqlBlob,string,wrapperBoolean,wrapperInt,id) values (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)]
Not sure what value to attach to a char under those circumstances.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Apparently, postgres disallows
char
fields with a0
(default) value, resulting in interesting issues like:Not sure what value to attach to a
char
under those circumstances.The text was updated successfully, but these errors were encountered: