From 848fb3316d986cb27bc29b20ad7a99dab479c8fb Mon Sep 17 00:00:00 2001 From: Nik Everett Date: Fri, 6 Oct 2023 13:38:11 -0400 Subject: [PATCH] ESQL: Reenable another csv test (#100411) (#100437) This one was also disabled as part of our effort to do Block tracking and now it passes. I believe it was disabled when we didn't close Blocks on the way into `EVAL`. But now we do, so we're good to enable this one! --- .../esql/qa/testFixtures/src/main/resources/keep.csv-spec | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/keep.csv-spec b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/keep.csv-spec index 13a8b8f66fc4f..3637081c3c4b6 100644 --- a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/keep.csv-spec +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/keep.csv-spec @@ -426,8 +426,7 @@ nullsum:integer | salary:integer null | 74999 ; -# AwaitsFix https://github.com/elastic/elasticsearch/issues/99826 -evalWithNullAndAvg-Ignore +evalWithNullAndAvg from employees | eval nullsum = salary + null | stats avg(nullsum), count(nullsum); avg(nullsum):double | count(nullsum):long