blob: 58fd62c03e2539a0dca352db2f78afcd85836531 [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.optimization.queryandsqlcounting;
import org.eclipse.persistence.queries.DataModifyQuery;
import org.eclipse.persistence.sessions.UnitOfWork;
public class BatchWritingFlushInWriteChangesTest extends BatchWritingFlushQueryTest {
public BatchWritingFlushInWriteChangesTest() {
EXPECTED_INITIAL_QUERIES = 2;
setDescription("Test WriteChanges flushes batch statements when using the Dynamic batch writing mechanism.");
}
@Override
public void test() {
UnitOfWork uow = getSession().acquireUnitOfWork();
myDataModifyQueryObj1 = new DataModifyQuery("UPDATE EMPLOYEE SET F_NAME = 'Fatima?' WHERE L_NAME = 'Smith'");
myDataModifyQueryObj2 = new DataModifyQuery("UPDATE EMPLOYEE SET F_NAME = 'Fatima2?' WHERE L_NAME = 'Smith'");
uow.executeQuery(myDataModifyQueryObj1);
uow.executeQuery(myDataModifyQueryObj2);
initialSQLStatements = tracker.getSqlStatements().size();
initialQueries = tracker.getQueries().size();
//feature to be tested:
uow.writeChanges();
secondSQLStatements = tracker.getSqlStatements().size();
secondQueries = tracker.getQueries().size();
uow.commit();
}
}