Add missing implementation of isMatchCompatible for HasAttachment query #1480

This commit is contained in:
Ben Gotow 2019-05-26 18:41:14 -05:00
parent c9b86cc217
commit 3c6802b84e

View file

@ -353,6 +353,10 @@ export class HasAttachmentQueryExpression extends QueryExpression {
visitor.visitHasAttachment(this); visitor.visitHasAttachment(this);
} }
_computeIsMatchCompatible() {
return false;
}
equals(other) { equals(other) {
return other instanceof HasAttachmentQueryExpression; return other instanceof HasAttachmentQueryExpression;
} }