OPENJPA-488, OPENJPA-489, OPENJPA-490, OPENJPA-491, OPENJPA-492. Reduce logging in test case; use onlyChild() to validate tree structure.

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@612348 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Patrick Linskey 2008-01-16 04:35:26 +00:00
parent 3d3cb67c5a
commit 206f0f04e1
2 changed files with 4 additions and 4 deletions

View File

@ -1075,13 +1075,13 @@ public class JPQLExpressionBuilder
return factory.getCurrentTimestamp();
case JJTSELECTEXTENSION:
return eval(node.children[0]);
return eval(onlyChild(node));
case JJTGROUPBYEXTENSION:
return eval(node.children[0]);
return eval(onlyChild(node));
case JJTORDERBYEXTENSION:
return eval(node.children[0]);
return eval(onlyChild(node));
default:
throw parseException(EX_FATAL, "bad-tree",

View File

@ -38,7 +38,7 @@ public abstract class GroupingTestCase
protected abstract void prepareQuery(Query q);
public void setUp() {
super.setUp(AllFieldTypes.class, CLEAR_TABLES, "openjpa.Log", "SQL=TRACE");
super.setUp(AllFieldTypes.class, CLEAR_TABLES);
AllFieldTypes pc1 = new AllFieldTypes();
AllFieldTypes pc2 = new AllFieldTypes();