HHH-16517 Don't clear map to allow prepared statement group reuse

This commit is contained in:
Marco Belladelli 2023-05-04 16:02:03 +02:00
parent 9c7268afce
commit e3596b6297
No known key found for this signature in database
GPG Key ID: D1D0C3030AE3AA35
1 changed files with 0 additions and 1 deletions

View File

@ -149,7 +149,6 @@ public class PreparedStatementGroupStandard implements PreparedStatementGroup {
@Override
public void release() {
statementMap.forEach( (tableName, statementDetails) -> statementDetails.releaseStatement( session ) );
statementMap.clear();
}