private TestConnection getNewConnection() throws Exception { TestConnection conn = connPool.getConnection(userName, password); if (schema != null) conn.setSchema(schema); return conn; }
@Override public void setSchema(String schema) throws SQLException { delegate.setSchema(schema); }