You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SPARQL query with a HAVING node will show an incorrect query explanation because the HAVING node is not part of the query explanation. This makes it seem like the query is returning more results than expected.
Plan:
Make tests in QueryPlanRetrievalTest
Understand how the ASTHavingClause is represented using TupleExpr by taking a look at the private TupleExpr processHavingClause(ASTHavingClause havingNode, TupleExpr tupleExpr, Group group) method in TupleExprBuilder
The text was updated successfully, but these errors were encountered:
Discussed in #5129
SPARQL query with a HAVING node will show an incorrect query explanation because the HAVING node is not part of the query explanation. This makes it seem like the query is returning more results than expected.
Plan:
private TupleExpr processHavingClause(ASTHavingClause havingNode, TupleExpr tupleExpr, Group group)
method inTupleExprBuilder
The text was updated successfully, but these errors were encountered: