Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
agrgr committed Aug 1, 2023
1 parent f76cd15 commit 051d9db
Showing 1 changed file with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -483,11 +483,7 @@ public Filter sIndexFilter(Map<String, Object> qualifierMap) {
MAP_VAL_NOTEQ_BY_KEY {
@Override
public Exp filterExp(Map<String, Object> qualifierMap) {
// if (getValue1(qualifierMap) instanceof Value.NullValue || getValue1(qualifierMap).getObject() != null) {
// return findExistingByMapKey(qualifierMap);
// } else {
return getFilterExpMapValNotEqOrFail(qualifierMap, Exp::ne);
// }
return getFilterExpMapValNotEqOrFail(qualifierMap, Exp::ne);
}

@Override
Expand Down Expand Up @@ -813,7 +809,8 @@ public Exp filterExp(Map<String, Object> qualifierMap) {
// currently querying for a specific Map key with not null value is not supported,
// it is recommended to use querying for an existing key and then filtering key:!=null
return getMapValEqOrFail(qualifierMap, Exp::eq, "MAP_VAL_IS_NULL_BY_KEY");
} }
}
}

@Override
public Filter sIndexFilter(Map<String, Object> qualifierMap) {
Expand Down

0 comments on commit 051d9db

Please sign in to comment.