You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Alexandre Boudnik (JIRA)" <ji...@apache.org> on 2016/06/28 18:26:57 UTC

[jira] [Updated] (IGNITE-3389) metadata result set throws NPE when closed

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

Alexandre Boudnik updated IGNITE-3389:
--------------------------------------
    Description: 
Need to handle when ResultSet has no cursor. It happened only with client JDBC. This code throws NPE:

{code}
    public void testMetadataResultSetClose() throws Exception {
        try (Connection conn = DriverManager.getConnection(BASE_URL)) {
            try (ResultSet tables = conn.getMetaData().getTables(null, null, "%", null)) {
                int columnCount = tables.getMetaData().getColumnCount();
                while (tables.next())
                    for (int i = 0; i < columnCount; i++)
                        tables.getObject(i + 1);
            }
        }
    }
{code}

  was:Need to handle when ResultSet has no cursor


> metadata result set throws NPE when closed
> ------------------------------------------
>
>                 Key: IGNITE-3389
>                 URL: https://issues.apache.org/jira/browse/IGNITE-3389
>             Project: Ignite
>          Issue Type: Bug
>          Components: clients, odbc, SQL
>    Affects Versions: 1.6, 1.7
>            Reporter: Alexandre Boudnik
>            Assignee: Alexandre Boudnik
>              Labels: easyfix
>             Fix For: 1.7
>
>   Original Estimate: 2h
>  Remaining Estimate: 2h
>
> Need to handle when ResultSet has no cursor. It happened only with client JDBC. This code throws NPE:
> {code}
>     public void testMetadataResultSetClose() throws Exception {
>         try (Connection conn = DriverManager.getConnection(BASE_URL)) {
>             try (ResultSet tables = conn.getMetaData().getTables(null, null, "%", null)) {
>                 int columnCount = tables.getMetaData().getColumnCount();
>                 while (tables.next())
>                     for (int i = 0; i < columnCount; i++)
>                         tables.getObject(i + 1);
>             }
>         }
>     }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)