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 2018/01/26 22:18:00 UTC

[jira] [Created] (KYLIN-3204) Unclosed resources in JdbcExplorer#evalQueryMetadata

Ted Yu created KYLIN-3204:
-----------------------------

             Summary: Unclosed resources in JdbcExplorer#evalQueryMetadata
                 Key: KYLIN-3204
                 URL: https://issues.apache.org/jira/browse/KYLIN-3204
             Project: Kylin
          Issue Type: Bug
            Reporter: Ted Yu


{code}
            Connection con = SqlUtil.getConnection(dbconf);
            DatabaseMetaData dbmd = con.getMetaData();
            ResultSet rs = dbmd.getColumns(null, tmpDatabase, tmpView, null);
{code}
con and rs should be closed upon return.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)