You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-dev@db.apache.org by "Kathey Marsden (JIRA)" <ji...@apache.org> on 2007/04/17 01:00:23 UTC

[jira] Created: (DERBY-2553) values SYSCS_UTIL.SYSCS_GET_RUNTIMESTATISTICS() returns null in test ScrollCursors1Test when run against network server

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.


[jira] Updated: (DERBY-2553) values SYSCS_UTIL.SYSCS_GET_RUNTIMESTATISTICS() returns null in test ScrollCursors1Test when run against network server

Posted by "Mike Matrigali (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/DERBY-2553?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mike Matrigali updated DERBY-2553:
----------------------------------

    Affects Version/s: 10.3.0.0
        Fix Version/s:     (was: 10.3.0.0)

> 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
>    Affects Versions: 10.3.0.0
>            Reporter: Kathey Marsden
>            Priority: Minor
>
> 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.