HeapScan test commits wrong connection
--------------------------------------
Key: DERBY-4607
URL: https://issues.apache.org/jira/browse/DERBY-4607
Project: Derby
Issue Type: Bug
Components: Test
Affects Versions: 10.6.0.0
Reporter: Knut Anders Hatlen
Priority: Minor
The SELECT query in HeapScan is initialized like this:
select = openDefaultConnection().prepareStatement("SELECT * FROM
"+tableName);
The test cases commit the transaction like this:
getConnection().commit();
openDefaultConnection() opens and returns a new connection to the default
database, whereas getConnection() returns a cached default connection, so the
two connections are not the same, and the transaction that's being committed is
not the executing transaction.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.