You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@kylin.apache.org by "Ted Yu (JIRA)" <ji...@apache.org> on 2017/07/06 01:00:03 UTC

[jira] [Updated] (KYLIN-2658) Unclosed ResultSet in JdbcExplorer#loadTableMetadata()

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

Ted Yu updated KYLIN-2658:
--------------------------
    Description: 
{code}
        ResultSet rs = dbmd.getTables(null, database, table, null);
...
        rs = dbmd.getColumns(null, database, table, null);
{code}

rs is overwritten without closing the previous instance.

  was:
{code}
        ResultSet rs = dbmd.getTables(null, database, table, null);
...
        rs = dbmd.getColumns(null, database, table, null);
{code}
rs is overwritten without closing the previous instance.


> Unclosed ResultSet in JdbcExplorer#loadTableMetadata()
> ------------------------------------------------------
>
>                 Key: KYLIN-2658
>                 URL: https://issues.apache.org/jira/browse/KYLIN-2658
>             Project: Kylin
>          Issue Type: Bug
>            Reporter: Ted Yu
>            Priority: Minor
>
> {code}
>         ResultSet rs = dbmd.getTables(null, database, table, null);
> ...
>         rs = dbmd.getColumns(null, database, table, null);
> {code}
> rs is overwritten without closing the previous instance.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)