Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 6 additions & 0 deletions docs/changelog/135097.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pr: 135097
summary: Fixes `countDistinctWithConditions` in csv-spec tests
area: ES|QL
type: bug
issues:
- 134380
Original file line number Diff line number Diff line change
Expand Up @@ -3255,7 +3255,6 @@ required_capability: stats_with_filtered_surrogate_fixed

ROW x = [1, 2, 3, 4, 5]
| MV_EXPAND x
| EVAL agg_metric = TO_AGGREGATE_METRIC_DOUBLE(x)
| STATS count1 = COUNT_DISTINCT(x) WHERE x <= 3,
count2 = COUNT_DISTINCT(x),
count3 = COUNT_DISTINCT(1) WHERE x <= 3,
Expand Down