Merge remote-tracking branch 'brettwooldridge/HikariCP/dev' into dev

pull/371/head
Nitin 10 years ago
commit a0ebf35d91

@ -48,31 +48,31 @@ public final class ProxyFactory
*/
public static IHikariConnectionProxy getProxyConnection(final PoolBagEntry bagEntry, final LeakTask leakTask, final long now)
{
// Body is injected by JavassistProxyFactory
return null;
// Body is replaced (injected) by JavassistProxyFactory
throw new IllegalStateException("You need to run the CLI build and you need target/classes in your classpath to run.");
}
static Statement getProxyStatement(final ConnectionProxy connection, final Statement statement)
{
// Body is injected by JavassistProxyFactory
return null;
// Body is replaced (injected) by JavassistProxyFactory
throw new IllegalStateException("You need to run the CLI build and you need target/classes in your classpath to run.");
}
static CallableStatement getProxyCallableStatement(final ConnectionProxy connection, final CallableStatement statement)
{
// Body is injected by JavassistProxyFactory
return null;
// Body is replaced (injected) by JavassistProxyFactory
throw new IllegalStateException("You need to run the CLI build and you need target/classes in your classpath to run.");
}
static PreparedStatement getProxyPreparedStatement(final ConnectionProxy connection, final PreparedStatement statement)
{
// Body is injected by JavassistProxyFactory
return null;
// Body is replaced (injected) by JavassistProxyFactory
throw new IllegalStateException("You need to run the CLI build and you need target/classes in your classpath to run.");
}
static ResultSet getProxyResultSet(final ConnectionProxy connection, final StatementProxy statement, final ResultSet resultSet)
{
// Body is injected by JavassistProxyFactory
return null;
// Body is replaced (injected) by JavassistProxyFactory
throw new IllegalStateException("You need to run the CLI build and you need target/classes in your classpath to run.");
}
}

Loading…
Cancel
Save