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:
Pinaki Poddar 2009-11-03 07:56:07 +00:00
parent 48a8b22b7b
commit 2ff77531c2
1 changed files with 1 additions and 1 deletions

View File

@ -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)));
} }
} }