Skip to content

Commit 0fffa6a

Browse files
committed
fix
1 parent 9d44a5e commit 0fffa6a

File tree

2 files changed

+0
-10
lines changed

2 files changed

+0
-10
lines changed

fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/functions/agg/OrthogonalBitmapExprCalculate.java

-5
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,6 @@ public boolean supportAggregatePhase(AggregatePhase aggregatePhase) {
6464
return aggregatePhase == AggregatePhase.TWO;
6565
}
6666

67-
@Override
68-
public Expression resultForEmptyInput() {
69-
return new BitmapEmpty();
70-
}
71-
7267
@Override
7368
public OrthogonalBitmapExprCalculate withDistinctAndChildren(boolean distinct, List<Expression> children) {
7469
Preconditions.checkArgument(children.size() == 3

fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/functions/agg/OrthogonalBitmapExprCalculateCount.java

-5
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,6 @@ public boolean supportAggregatePhase(AggregatePhase aggregatePhase) {
6666
return aggregatePhase == AggregatePhase.TWO;
6767
}
6868

69-
@Override
70-
public Expression resultForEmptyInput() {
71-
return new BitmapEmpty();
72-
}
73-
7469
@Override
7570
public OrthogonalBitmapExprCalculateCount withDistinctAndChildren(boolean distinct, List<Expression> children) {
7671
Preconditions.checkArgument(children.size() == 3

0 commit comments

Comments
 (0)