blob: 0e2ce88204f03f209516a099025b83dca02af71c [file] [log] [blame]
/*
* Copyright (c) 1998, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.testing.tests.performance.jdbc;
import java.util.*;
import java.sql.*;
import org.eclipse.persistence.internal.sessions.AbstractSession;
import org.eclipse.persistence.testing.framework.*;
/**
* This test compares the performance between using a set rowfetch or the default.
*/
public class LargeRowFetchTest extends PerformanceComparisonTestCase {
protected Connection connection;
protected String sql;
public LargeRowFetchTest() {
setName("Default row fetch vs set row fetch (50, 100 objects) PerformanceComparisonTest");
setDescription("Compares the performance between using default and set row fetch, query 100 rows, row fetch set to 50.");
addSetRowFetch();
}
@Override
public void setup() throws Exception {
connection = (Connection)((AbstractSession)getSession()).getAccessor().getDatasourceConnection();
sql = "SELECT * FROM EMPLOYEE";
}
/**
* Default row fetch (10).
*/
@Override
public void test() throws Exception {
PreparedStatement statement = connection.prepareStatement(sql);
ResultSet result = statement.executeQuery();
int size = result.getMetaData().getColumnCount();
Vector rows = new Vector();
while (result.next()) {
Vector row = new Vector(size);
for (int column = 1; column <= size; column++) {
row.add(result.getObject(column));
}
rows.add(row);
}
result.close();
statement.close();
}
/**
* 50 row fetch.
*/
public void addSetRowFetch() {
PerformanceComparisonTestCase test = new PerformanceComparisonTestCase() {
@Override
public void test() throws Exception {
PreparedStatement statement = connection.prepareStatement(sql);
statement.setFetchSize(50);
ResultSet result = statement.executeQuery();
int size = result.getMetaData().getColumnCount();
Vector rows = new Vector();
while (result.next()) {
Vector row = new Vector(size);
for (int column = 1; column <= size; column++) {
row.add(result.getObject(column));
}
rows.add(row);
}
result.close();
statement.close();
}
};
test.setName("SetRowFetchTest");
test.setAllowableDecrease(10);
addTest(test);
}
}