From 5e22c27c897908e1cf8d4a6db91c7c73fcecccd6 Mon Sep 17 00:00:00 2001 From: Nik Everett Date: Fri, 27 Oct 2023 07:45:13 -0400 Subject: [PATCH] ESQL: Fix build Two PRs pass in the night. Now we can't build. This fixes it. --- .../compute/operator/ColumnExtractOperatorTests.java | 5 ----- .../compute/operator/StringExtractOperatorTests.java | 10 ---------- 2 files changed, 15 deletions(-) diff --git a/x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/operator/ColumnExtractOperatorTests.java b/x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/operator/ColumnExtractOperatorTests.java index 78d0485593197..7680fd410a709 100644 --- a/x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/operator/ColumnExtractOperatorTests.java +++ b/x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/operator/ColumnExtractOperatorTests.java @@ -91,9 +91,4 @@ protected void assertSimpleOutput(List input, List results) { protected ByteSizeValue smallEnoughToCircuitBreak() { return ByteSizeValue.ofBytes(between(1, 32)); } - - @Override - protected DriverContext driverContext() { - return breakingDriverContext(); - } } diff --git a/x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/operator/StringExtractOperatorTests.java b/x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/operator/StringExtractOperatorTests.java index bc77f83cd9111..c55fbeb29a25e 100644 --- a/x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/operator/StringExtractOperatorTests.java +++ b/x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/operator/StringExtractOperatorTests.java @@ -130,14 +130,4 @@ public void close() {} result.releaseBlocks(); } } - - @Override - protected DriverContext driverContext() { - return breakingDriverContext(); - } - - @Override - protected DriverContext driverContext() { - return nonBreakingDriverContext(); - } }