Skip to content

Commit

Permalink
fix ignore unused categorical member
Browse files Browse the repository at this point in the history
Signed-off-by: Max Thonagel <[email protected]>
  • Loading branch information
thoniTUB committed May 6, 2024
1 parent 02e54f4 commit b3de537
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import com.bakdata.conquery.models.query.queryplan.aggregators.Aggregator;
import com.bakdata.conquery.models.query.queryplan.aggregators.specific.DateUnionAggregator;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
Expand All @@ -20,6 +21,7 @@
@Getter
@NoArgsConstructor(onConstructor_ = @JsonCreator)
@CPSType(id = "DATE_UNION", base = Select.class)
@JsonIgnoreProperties("categorical")
public class DateUnionSelect extends Select implements DaterangeSelect {

@NsIdRef
Expand Down

0 comments on commit b3de537

Please sign in to comment.