When performing a search that uses _total=accurate that intersects a JPA search and a fulltext search, the total returned is incorrect.
It turns out that we actually don't support this. We should block `_total=accurate` on queries that intersect JPA and Fulltext, as it is impossible to calculate the true total. It should return a 400 with an explanation error.
When performing a search that uses
_total=accurate
that intersects a JPA search and a fulltext search, the total returned is incorrect.It turns out that we actually don't support this. We should block `_total=accurate` on queries that intersect JPA and Fulltext, as it is impossible to calculate the true total. It should return a 400 with an explanation error.