-
Notifications
You must be signed in to change notification settings - Fork 72
search:and-not-query is ignored in QueryBatcher #1640
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Thanks @marcopacurariu3 , we'll work on reproducing this today and will report back to you. |
Great @rjrudin, thank you! |
Associated to #1640, trying to reproduce the error.
@marcopacurariu3 I haven't had luck reproducing this yet. I added a new JUnit test - acb5085#diff-52e216474c59fcf9a974f2706e674b08ef0c484eee84fb74a7839b0439c99bd5R186 - that does the following:
I also verified that if I comment out the and-not query, then the test fails as it returns 2 documents instead of only 1. So the and-not-query appears to be getting picked up in all cases. Could you try modifying your query to do a term-query instead of a range-constraint-query? Looks like you could just do a term-query on "testapp". Perhaps the issue requires the use of both a range query and a set of search options. |
Sure, I will play around and come back to you tomorrow. Thanks a lot for digging into it. |
@rjrudin, thanks once again for the implemented test. This helped me finding out the real issue. It works with range-constraing-query in your example, too, so it's not that. The issue is that I am using "positive/negative" instead of "positive**-query**/negative**-query**". So, "positive" works in a simple search, but it does not work in QueryBatcher. The QueryBatcher supports only "positive-query" or "negative-query". Here is the query that for me it works in search, but not in batcher:
I assume that if you do the same in your test, then you will notice the issue. |
Hi @marcopacurariu3 - I checked the docs for a structured and-not-query - https://docs.marklogic.com/guide/search-dev/structured-query#id_65108 - and it does require I'm not sure why your query would work with I think the right approach here is to use |
Version of MarkLogic Java Client API
6.5.0
Version of MarkLogic Server
11.0.2
Java version
JDK 17
OS and version
ProductName: macOS
ProductVersion: 13.5
BuildVersion: 22G74
Input: Some code to illustrate the problem
While executing a query that contains a search:and-not-query, I noticed that the QueryBatcher is simply ignoring that part. However, the same query that is executed for a simple search does work.
final SearchHandle result = queryManager.search(structQueryDef, new SearchHandle()); result.getMatchResults();
The above search works. Same query passed to a QueryBatcher and calling batcher.getItems() does not take into account the and-not-query part.
Actual output: What did you observe? What errors did you see? Can you attach the logs? (Java logs, MarkLogic logs)
Executing the above query does not take into account the and-not-query for QueryBatcher.
Expected output: What specifically did you expect to happen?
The and-not-query is taken into account for QueryBatcher.
Alternatives: What else have you tried, actual/expected?
I have found a possible solution, instead of using directly the and-not-query, I have combined a manual and with a not, and it works like this.
The text was updated successfully, but these errors were encountered: