I'm getting the following error:
org.h2.jdbc.JdbcSQLException: IO Exception: "java.io.IOException: org.h2.message.DbException: IO Exception: ""java.io.IOException: org.h2.jdbc.JdbcSQLException: IO Exception: """"Missing lob: 7"""" [90028-170]"" [90028-168]"; "lob: null table: -1 id: 7" [90031-168]
When I do a select for update of a row with a CLOB column.
Facts:
- I added the CLOB column to an existing table.
- The table and the database were created with h2 version 168.
- The server is currently using h2 version 172.
- I use MVCC
- If I do a normal select (without for update), it works fine.
What is the cause of the error and how can I solve it?
Should I drop the MVCC setting? (although I want it...)