#745 - ElasticSearch - internally translate where().id.eq(42) ... to where().setId(42)

This commit is contained in:
Robin Bygrave
2016-06-20 22:29:38 +12:00
parent d12e55c20b
commit c793d6652f
18 changed files with 153 additions and 31 deletions
@@ -31,6 +31,12 @@ class NestedPathWrapperExpression implements SpiExpression {
context.endNested();
}
@Override
public Object getIdEqualTo(String idName) {
// always return null for this expression
return null;
}
@Override
public String nestedPath(BeanDescriptor<?> desc) {
return nestedPath;