At the moment SqlTypes.JSON columns are mapped to H2’s clob ddl type. With this change we want to make use of the built-in json ddl type, which requires a special syntax when writing values from strings: ? format json (see http://www.h2database.com/html/datatypes.html#json_type ). This syntax is also compatible with clob typed-columns, so this change shouldn’t break backwards compatibility. |