Skip to content

Commit f73e4cc

Browse files
authored
ESQL: Unmute nullify tests with STATS (elastic#140554)
Relates elastic#138888 and elastic#139797
1 parent a261367 commit f73e4cc

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

x-pack/plugin/esql/qa/testFixtures/src/main/resources/unmapped-nullify.csv-spec

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -198,16 +198,16 @@ foo:integer
198198
2
199199
;
200200

201-
# https://github.com/elastic/elasticsearch/pull/139797
202-
statsAggs-Ignore
201+
statsAggs
203202
required_capability: optional_fields
203+
required_capability: fix_agg_on_null_by_replacing_with_eval
204204

205205
SET unmapped_fields="nullify"\;
206206
ROW x = 1
207207
| STATS s = SUM(foo)
208208
;
209209

210-
s:long
210+
s:double
211211
null
212212
;
213213

@@ -223,17 +223,17 @@ foo:null
223223
null
224224
;
225225

226-
# https://github.com/elastic/elasticsearch/pull/139797
227-
statsAggs-Ignore
226+
statsAggsGrouped
228227
required_capability: optional_fields
228+
required_capability: fix_agg_on_null_by_replacing_with_eval
229229

230230
SET unmapped_fields="nullify"\;
231231
ROW x = 1
232232
| STATS s = SUM(foo) BY bar
233233
;
234234

235-
s:long | bar:null
236-
null | null
235+
s:double | bar:null
236+
null | null
237237
;
238238

239239
statsExpressions

0 commit comments

Comments
 (0)