Skip to content

Commit 326cb82

Browse files
Address more code review comments
1 parent 62956af commit 326cb82

22 files changed

+105
-66
lines changed

x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/aggregation/CountDistinctLongGroupingAggregatorFunctionTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import org.elasticsearch.compute.data.LongVector;
1515
import org.elasticsearch.compute.data.Page;
1616
import org.elasticsearch.compute.operator.SourceOperator;
17-
import org.elasticsearch.compute.operator.TupleLongLongBlockSourceOperator;
17+
import org.elasticsearch.compute.test.TupleLongLongBlockSourceOperator;
1818
import org.elasticsearch.core.Tuple;
1919

2020
import java.util.List;

x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/aggregation/CountGroupingAggregatorFunctionTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import org.elasticsearch.compute.data.Page;
1616
import org.elasticsearch.compute.operator.LongDoubleTupleBlockSourceOperator;
1717
import org.elasticsearch.compute.operator.SourceOperator;
18-
import org.elasticsearch.compute.operator.TupleLongLongBlockSourceOperator;
18+
import org.elasticsearch.compute.test.TupleLongLongBlockSourceOperator;
1919
import org.elasticsearch.core.Tuple;
2020

2121
import java.util.List;

x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/aggregation/MaxLongGroupingAggregatorFunctionTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import org.elasticsearch.compute.data.LongBlock;
1313
import org.elasticsearch.compute.data.Page;
1414
import org.elasticsearch.compute.operator.SourceOperator;
15-
import org.elasticsearch.compute.operator.TupleLongLongBlockSourceOperator;
15+
import org.elasticsearch.compute.test.TupleLongLongBlockSourceOperator;
1616
import org.elasticsearch.core.Tuple;
1717

1818
import java.util.List;

x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/aggregation/MedianAbsoluteDeviationLongGroupingAggregatorFunctionTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import org.elasticsearch.compute.data.DoubleBlock;
1414
import org.elasticsearch.compute.data.Page;
1515
import org.elasticsearch.compute.operator.SourceOperator;
16-
import org.elasticsearch.compute.operator.TupleLongLongBlockSourceOperator;
16+
import org.elasticsearch.compute.test.TupleLongLongBlockSourceOperator;
1717
import org.elasticsearch.core.Tuple;
1818

1919
import java.util.ArrayList;

x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/aggregation/MinLongGroupingAggregatorFunctionTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import org.elasticsearch.compute.data.LongBlock;
1313
import org.elasticsearch.compute.data.Page;
1414
import org.elasticsearch.compute.operator.SourceOperator;
15-
import org.elasticsearch.compute.operator.TupleLongLongBlockSourceOperator;
15+
import org.elasticsearch.compute.test.TupleLongLongBlockSourceOperator;
1616
import org.elasticsearch.core.Tuple;
1717

1818
import java.util.List;

x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/aggregation/PercentileLongGroupingAggregatorFunctionTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import org.elasticsearch.compute.data.DoubleBlock;
1414
import org.elasticsearch.compute.data.Page;
1515
import org.elasticsearch.compute.operator.SourceOperator;
16-
import org.elasticsearch.compute.operator.TupleLongLongBlockSourceOperator;
16+
import org.elasticsearch.compute.test.TupleLongLongBlockSourceOperator;
1717
import org.elasticsearch.core.Tuple;
1818
import org.elasticsearch.search.aggregations.metrics.TDigestState;
1919
import org.junit.Before;

x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/aggregation/SumLongGroupingAggregatorFunctionTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import org.elasticsearch.compute.data.LongBlock;
1313
import org.elasticsearch.compute.data.Page;
1414
import org.elasticsearch.compute.operator.SourceOperator;
15-
import org.elasticsearch.compute.operator.TupleLongLongBlockSourceOperator;
15+
import org.elasticsearch.compute.test.TupleLongLongBlockSourceOperator;
1616
import org.elasticsearch.core.Tuple;
1717

1818
import java.util.List;

x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/aggregation/ValuesLongGroupingAggregatorFunctionTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import org.elasticsearch.compute.data.BlockUtils;
1313
import org.elasticsearch.compute.data.Page;
1414
import org.elasticsearch.compute.operator.SourceOperator;
15-
import org.elasticsearch.compute.operator.TupleLongLongBlockSourceOperator;
15+
import org.elasticsearch.compute.test.TupleLongLongBlockSourceOperator;
1616
import org.elasticsearch.core.Tuple;
1717

1818
import java.util.Arrays;

x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/operator/EvalOperatorTests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
import org.elasticsearch.compute.operator.EvalOperator.EvalOperatorFactory;
1616
import org.elasticsearch.compute.test.CannedSourceOperator;
1717
import org.elasticsearch.compute.test.OperatorTestCase;
18+
import org.elasticsearch.compute.test.TupleLongLongBlockSourceOperator;
1819
import org.elasticsearch.core.Tuple;
1920
import org.hamcrest.Matcher;
2021

x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/operator/FilterOperatorTests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
import org.elasticsearch.compute.data.Page;
1717
import org.elasticsearch.compute.test.CannedSourceOperator;
1818
import org.elasticsearch.compute.test.OperatorTestCase;
19+
import org.elasticsearch.compute.test.TupleLongLongBlockSourceOperator;
1920
import org.elasticsearch.core.Tuple;
2021
import org.hamcrest.Matcher;
2122

0 commit comments

Comments
 (0)