use of org.eclipse.persistence.jpa.jpql.tools.spi.IQuery in project eclipselink by eclipse-ee4j.
the class AbstractJPQLQueryHelperTest method test_ResultType_23.
@Test
public final void test_ResultType_23() throws Exception {
// SELECT {d '2008-12-31'} FROM Employee e
IQuery namedQuery = namedQuery("Employee", "employee.date2");
AbstractJPQLQueryHelper helper = buildQueryHelper(namedQuery);
IType type = helper.getResultType();
assertNotNull("The type of {d '2008-12-31'} should have been found", type);
assertEquals("The wrong type for {d '2008-12-31'} was retrieved", getType(namedQuery, java.sql.Date.class), type);
}
use of org.eclipse.persistence.jpa.jpql.tools.spi.IQuery in project eclipselink by eclipse-ee4j.
the class AbstractJPQLQueryHelperTest method test_ResultType_76.
@Test
public final void test_ResultType_76() throws Exception {
// SELECT VALUE(v) FROM Alias a JOIN a.ids v
IQuery namedQuery = namedQuery("Alias", "alias.value1");
AbstractJPQLQueryHelper helper = buildQueryHelper(namedQuery);
IType type = helper.getResultType();
assertNotNull("The type of VALUE(v) should have been found", type);
assertEquals("The wrong type for VALUE(v) was retrieved", getType(namedQuery, Date.class), type);
}
use of org.eclipse.persistence.jpa.jpql.tools.spi.IQuery in project eclipselink by eclipse-ee4j.
the class AbstractJPQLQueryHelperTest method test_ResultType_05.
@Test
public final void test_ResultType_05() throws Exception {
// SELECT AVG(e.salary) + 2E2 FROM Employee e
IQuery namedQuery = namedQuery("Employee", "employee.addition2");
AbstractJPQLQueryHelper helper = buildQueryHelper(namedQuery);
IType type = helper.getResultType();
assertNotNull("The type of AVG(salary) + 2E2 should have been found", type);
assertEquals("The wrong type for AVG(salary) + 2E2 was retrieved", getType(namedQuery, Double.class), type);
}
use of org.eclipse.persistence.jpa.jpql.tools.spi.IQuery in project eclipselink by eclipse-ee4j.
the class AbstractJPQLQueryHelperTest method test_ResultType_13.
@Test
public final void test_ResultType_13() throws Exception {
// SELECT COALESCE(o.price, o.price) FROM Order o
IQuery namedQuery = namedQuery("Order", "order.coalesce1");
AbstractJPQLQueryHelper helper = buildQueryHelper(namedQuery);
IType type = helper.getResultType();
assertNotNull("The type of COALESCE(o.price, o.price) should have been found", type);
assertEquals("The wrong type for COALESCE(o.price, o.price) was retrieved", getType(namedQuery, BigInteger.class), type);
}
use of org.eclipse.persistence.jpa.jpql.tools.spi.IQuery in project eclipselink by eclipse-ee4j.
the class AbstractJPQLQueryHelperTest method test_ParameterType_22.
@Test
public final void test_ParameterType_22() throws Exception {
// SELECT DISTINCT p From Product p where p.shelfLife.soldDate NOT BETWEEN :date1 AND :newdate
IQuery namedQuery = namedQuery("Product", "product.date");
AbstractJPQLQueryHelper helper = buildQueryHelper(namedQuery);
IType type = helper.getParameterType(":date1");
assertNotNull("The type of :date1 should have been found", type);
assertEquals("The wrong type for :date1 was retrieved", getType(namedQuery, Date.class), type);
}
Aggregations