HHH-8983 log/clear Statement warnings on JdbcCoordinator#release
This commit is contained in:
parent
64acebb5a9
commit
2961f7df68
|
@ -523,6 +523,10 @@ public class JdbcCoordinatorImpl implements JdbcCoordinator {
|
||||||
@SuppressWarnings({ "unchecked" })
|
@SuppressWarnings({ "unchecked" })
|
||||||
protected void close(Statement statement) {
|
protected void close(Statement statement) {
|
||||||
LOG.tracev( "Closing prepared statement [{0}]", statement );
|
LOG.tracev( "Closing prepared statement [{0}]", statement );
|
||||||
|
|
||||||
|
// Important for Statement caching -- some DBs (especially Sybase) log warnings on every Statement under
|
||||||
|
// certain situations.
|
||||||
|
sqlExceptionHelper().logAndClearWarnings( statement );
|
||||||
|
|
||||||
if ( statement instanceof InvalidatableWrapper ) {
|
if ( statement instanceof InvalidatableWrapper ) {
|
||||||
final InvalidatableWrapper<Statement> wrapper = (InvalidatableWrapper<Statement>) statement;
|
final InvalidatableWrapper<Statement> wrapper = (InvalidatableWrapper<Statement>) statement;
|
||||||
|
|
|
@ -268,6 +268,10 @@ public class SqlExceptionHelper {
|
||||||
public void logAndClearWarnings(Connection connection) {
|
public void logAndClearWarnings(Connection connection) {
|
||||||
handleAndClearWarnings( connection, STANDARD_WARNING_HANDLER );
|
handleAndClearWarnings( connection, STANDARD_WARNING_HANDLER );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void logAndClearWarnings(Statement statement) {
|
||||||
|
handleAndClearWarnings( statement, STANDARD_WARNING_HANDLER );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* General purpose handling of warnings associated with a JDBC {@link Connection}.
|
* General purpose handling of warnings associated with a JDBC {@link Connection}.
|
||||||
|
|
Loading…
Reference in New Issue