-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Closed
Milestone
Description
JdbcExecutionContextDao
serializes as ISO-8859-1
Line 77 in d0ab497
private static final String CHARSET_NAME = "ISO-8859-1"; |
This limits us to the ISO-8859-1 repertoire, even simple things like the Euro sign € are not supported. Honestly it is quite confusing that we convert through a binary encoding at all given that JdbcExecutionContextDao
stores as String
/VARCHAR
/CLOB
/....
This would be breaking change for anybody currently using non-ASCII ISO-8859-1 characters.