Hello,

I'm trying to get this test case to work:

Test setup:

Database with a single table with one row. The table just contains a single 
text column.

Test case:

   1. Create transaction
   2. Update the text in the single data row to foo
   3. Create a new thread
      1. Create inner transaction
      2. Update the text in the single data row to bar
      3. Commit the inner transactions
   4. Commit the outer transaction
   5. Read the value

With 1.3, this worked and returned "bar". With 1.4, I get error 
CONCURRENT_UPDATE_1 90131
http://www.h2database.com/javadoc/org/h2/constant/ErrorCode.html#c90131

Is there a way to make nested transactions which update the same rows work 
with 1.4? I tried MVCC=true and false, LOCK_MODE=3 but to no avail.

-- 
You received this message because you are subscribed to the Google Groups "H2 
Database" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/h2-database.
For more options, visit https://groups.google.com/d/optout.

Reply via email to