mirror of https://github.com/apache/openjpa.git
Changed column name for Order.count to CNT to save HSQLDB
git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@832328 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
48a8b22b7b
commit
2ff77531c2
|
@ -222,7 +222,7 @@ public abstract class AbstractCriteriaTestCase extends TestCase {
|
||||||
if (!jSQL.get(i).equalsIgnoreCase(expectedSQL)) {
|
if (!jSQL.get(i).equalsIgnoreCase(expectedSQL)) {
|
||||||
printSQL("SQL for JPQL", jSQL.get(i));
|
printSQL("SQL for JPQL", jSQL.get(i));
|
||||||
printSQL("Expected SQL", expectedSQL);
|
printSQL("Expected SQL", expectedSQL);
|
||||||
assertTrue(i + "-th SQL for JPQL: " + jpql + " are different than Expected SQL " + expectedSQL,
|
assertTrue(i + "-th SQL for JPQL: " + jSQL.get(i) + " are different than Expected SQL " + expectedSQL,
|
||||||
expectedSQL.equalsIgnoreCase(jSQL.get(i)));
|
expectedSQL.equalsIgnoreCase(jSQL.get(i)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue