blob: b8ff37f5bd646ca2342e37590b529f80a95e0c17 [file] [log] [blame]
/*
* Copyright (c) 2018, 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
*/
package org.eclipse.persistence.testing.tests.queries;
import org.eclipse.persistence.queries.ReadAllQuery;
import org.eclipse.persistence.testing.models.employee.domain.Project;
public class OrderingSuperClassTest extends OrderingMutipleTableTest {
@Override
protected void setup() {
customSQLRows = getSession().executeSelectingCall(new org.eclipse.persistence.queries.SQLCall(
"SELECT t0.PROJ_NAME FROM PROJECT t0 ORDER BY t0.PROJ_NAME"));
}
@Override
public void test() {
ReadAllQuery query = new ReadAllQuery();
query.addAscendingOrdering("name");
query.setReferenceClass(Project.class);
orderedQueryObjects = executeOrderingQuery(Project.class, "name");
}
}