Skip to content

Commit 8b92f44

Browse files
committed
wip
1 parent 33c5d45 commit 8b92f44

27 files changed

Lines changed: 2782 additions & 46 deletions

core/queryalgebra/evaluation/src/main/java/org/eclipse/rdf4j/query/algebra/evaluation/impl/EvaluationStatistics.java

Lines changed: 450 additions & 0 deletions
Large diffs are not rendered by default.

core/queryalgebra/evaluation/src/main/java/org/eclipse/rdf4j/query/algebra/evaluation/impl/TupleFunctionEvaluationStatistics.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ protected static class TupleFunctionCardinalityCalculator extends CardinalityCal
2424

2525
private static final double VAR_CARDINALITY = 10;
2626

27+
@Override
28+
protected CardinalityCalculator newCalculator() {
29+
return new TupleFunctionCardinalityCalculator();
30+
}
31+
2732
@Override
2833
protected void meetNode(QueryModelNode node) {
2934
if (node instanceof TupleFunctionCall) {

0 commit comments

Comments
 (0)