#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
@@ -21,6 +21,12 @@ public abstract class AbstractExpression implements SpiExpression {
this.propName = propName;
}
@Override
public Object getIdEqualTo(String idName) {
// override on SimpleExpression
return null;
}
@Override
public SpiExpression copyForPlanKey() {
return this;