Ted Yu created KYLIN-2643:
-----------------------------
Summary: PreparedStatement should be closed in
QueryServiceV2#execute()
Key: KYLIN-2643
URL: https://issues.apache.org/jira/browse/KYLIN-2643
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 returning from the method.
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)