Skip to content
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

Add round property for CardinalityAggregator #146

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Remove old constructor of CardinalityAggregator
  • Loading branch information
damianstachnio committed Aug 7, 2020
commit eb3c1ea72bb44e3791060e1743ce35c5969b6173
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,6 @@ public class CardinalityAggregator extends DruidAggregator {
private Boolean byRow;
private Boolean round;

@Deprecated
private CardinalityAggregator(@NonNull String name, @NonNull List<String> fields, Boolean byRow) {
this.type = CARDINALITY_AGGREGATOR_TYPE;
this.name = name;
this.fields = fields;
this.byRow = byRow;
}

@Builder
private CardinalityAggregator(@NonNull String name, @NonNull List<String> fields, Boolean byRow, Boolean round) {
this.type = CARDINALITY_AGGREGATOR_TYPE;
Expand Down