Ted Yu created KYLIN-2877:
-----------------------------

             Summary: Unclosed PreparedStatement in QueryService#execute()
                 Key: KYLIN-2877
                 URL: https://issues.apache.org/jira/browse/KYLIN-2877
             Project: Kylin
          Issue Type: Bug
            Reporter: Ted Yu
            Priority: Minor


{code}
                PreparedStatement preparedState = 
conn.prepareStatement(correctedSql);
                processStatementAttr(preparedState, sqlRequest);
                for (int i = 0; i < ((PrepareSqlRequest) 
sqlRequest).getParams().length; i++) {
                    setParam(preparedState, i + 1, ((PrepareSqlRequest) 
sqlRequest).getParams()[i]);
                }
                resultSet = preparedState.executeQuery();
{code}
preparedState should be closed upon return.



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

Reply via email to