mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-21 18:09:20 +00:00
Merged 5.2.N (5.2.1) to HEAD (5.2)
130610 amorarasu: REPO-484: [REST API] 400 error for unsupported NOT operator in the 'where' predicate. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@132152 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -485,7 +485,7 @@ public class WhereTests implements RecognizedParamsExtractor
|
||||
assertEquals(WhereClauseParser.PROPERTYVALUE, tree.getChild(1).getType());
|
||||
QueryHelper.walk(theQuery, new WalkerCallbackAdapter(){
|
||||
@Override
|
||||
public void comparison(int comparisonType, String propertyName, String propertyValue) {
|
||||
public void comparison(int comparisonType, String propertyName, String propertyValue, boolean negated) {
|
||||
assertTrue("Property name should be "+propName,propName.equals(propertyName));
|
||||
assertTrue(comparisonOperator == comparisonType);
|
||||
assertTrue("Property value should be "+propVal,propVal.equals(propertyValue));
|
||||
|
Reference in New Issue
Block a user