Developer guide doc for scope of locks is incorrect  for one case of repeatable 
read. 
--------------------------------------------------------------------------------------

                 Key: DERBY-1683
                 URL: http://issues.apache.org/jira/browse/DERBY-1683
             Project: Derby
          Issue Type: Bug
          Components: Documentation
    Affects Versions: 10.1.3.1, 10.1.3.0, 10.1.2.1, 10.1.1.0, 10.0.2.1, 
10.0.2.0, 10.2.0.0
            Reporter: Sunitha Kambhampati
            Priority: Minor
             Fix For: 10.2.0.0


http://db.apache.org/derby/docs/dev/devguide/rdevconcepts8424.html

There is this section under single-row locks.
-------------
For TRANSACTION_READ_COMMITTED or TRANSACTION_REPEATABLE_READ isolation, Derby 
treats rows as cursors for SELECT statements. It locks rows only as the 
application steps through the rows in the result. The current row is locked.
-------------

The last statement above is not true for Repeatable read.  The last stmt needs 
to be changed to--

For TRANSACTION_REPEATABLE_READ isolation, the locks are released at the end of 
the transaction. For TRANSACTION_READ_COMMITTED,  it locks rows only as the 
application steps through the rows in the result. The current row is locked. 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to