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 "Knut Anders Hatlen (JIRA)" <ji...@apache.org> on 2010/01/22 22:44:21 UTC

[jira] Closed: (DERBY-4524) Incorrect DROP FUNCTION logic in AccessTest's tearDown() method

     [ https://issues.apache.org/jira/browse/DERBY-4524?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Knut Anders Hatlen closed DERBY-4524.
-------------------------------------

       Resolution: Fixed
    Fix Version/s: 10.6.0.0

Committed revision 902288.

> Incorrect DROP FUNCTION logic in AccessTest's tearDown() method
> ---------------------------------------------------------------
>
>                 Key: DERBY-4524
>                 URL: https://issues.apache.org/jira/browse/DERBY-4524
>             Project: Derby
>          Issue Type: Bug
>          Components: Test
>    Affects Versions: 10.6.0.0
>            Reporter: Knut Anders Hatlen
>            Assignee: Knut Anders Hatlen
>             Fix For: 10.6.0.0
>
>         Attachments: removeTearDown.diff
>
>
>     public void tearDown() throws Exception {
>         Statement st = createStatement();
>         super.tearDown();
>         try {
>             st.executeUpdate("DROP FUNCTION PADSTRING");
>         } catch (SQLException e) {
>             // never mind.
>         }
>     }
> The DROP FUNCTION statement always fails with "No current connection" because super.tearDown(), which is called between createStatement() and executeUpdate(), closes the connection.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.