values SYSCS_UTIL.SYSCS_GET_RUNTIMESTATISTICS() returns null in test
ScrollCursors1Test when run against network server
------------------------------------------------------------------------------------------------------------------------
Key: DERBY-2553
URL: https://issues.apache.org/jira/browse/DERBY-2553
Project: Derby
Issue Type: Bug
Components: Network Client
Reporter: Kathey Marsden
Priority: Minor
Fix For: 10.3.0.0
Call to runtimestatistics in the new test ScrollCursors1Test returns null value
when run against network server.
Look for the reference to this bug near the following code. I was not able to
reproduce this outside of the test.
rs2 = s.executeQuery("values SYSCS_UTIL.SYSCS_GET_RUNTIMESTATISTICS()");
rs2.next();
if (usingEmbedded())
{
// not sure why I get a null rts with network server.
RuntimeStatisticsParser rts = new
RuntimeStatisticsParser(rs2.getString(1));
rs2.close();
assertEquals(Connection.TRANSACTION_READ_COMMITTED,
rts.getIsolationLevel());
assertTrue(rts.usedTableScan());
assertTrue(rts.isScrollInsensitive());
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.