#744 - ElasticSearch - isEmpty() expression needs to have outer not:{} negation to work as per ..

This commit is contained in:
Robin Bygrave
2016-06-20 21:32:05 +12:00
parent 3477f590dd
commit d12e55c20b
2 changed files with 34 additions and 1 deletions
@@ -157,4 +157,14 @@ public interface DocQueryContext {
* End nested path expressions.
*/
void endNested() throws IOException;
/**
* Start a not wrapping an expression.
*/
void startNot() throws IOException;
/**
* End a not wrapper.
*/
void endNot() throws IOException;
}