-
Bug
-
Resolution: Obsolete
-
Major
-
None
-
6.0.0.Final
-
None
DefaultTwoWayKey2StringMapper uses two neat tricks.
1. it does not encode all supported types, it only encodes non-Strings. Strings are kept unmodified.
2. it uses a special prefix (unicode char 0xfeff) to mark which strings were encoded and which are plain.
Unfortunately some databases, notably MySql, interpret the endianness mark (0xfeff, 0xfffe), convert to native byte order and then drop it.
This leaves us with no clue the string is not an actual String but an encoded representation of another type. This misinterpretation leads later to ClassCastExceptions in various places in core and user code.
Proposed fix: get rid of #1 and #2 optimisations. Encode all objects, including Strings and always use the ?n prefix (where n stands for the original type). Drop the 0xFEFF marker prefix.
- blocks
-
ISPN-4125 ClassCastException if cache.keyset() is invoked for a string-keyed-jdbc-store in C/S mode
- Closed
- is related to
-
ISPN-4125 ClassCastException if cache.keyset() is invoked for a string-keyed-jdbc-store in C/S mode
- Closed
- relates to
-
ISPN-4984 JdbcStringBasedStore with MySQL sets up column that uses case-insensitive comparisons for keys
- New