diff --git a/x-pack/plugin/esql/compute/src/main/generated-src/org/elasticsearch/compute/data/BytesRefVector.java b/x-pack/plugin/esql/compute/src/main/generated-src/org/elasticsearch/compute/data/BytesRefVector.java index 919651d894a11..6201ab4a3728a 100644 --- a/x-pack/plugin/esql/compute/src/main/generated-src/org/elasticsearch/compute/data/BytesRefVector.java +++ b/x-pack/plugin/esql/compute/src/main/generated-src/org/elasticsearch/compute/data/BytesRefVector.java @@ -10,7 +10,6 @@ import org.apache.lucene.util.BytesRef; import org.elasticsearch.common.io.stream.StreamInput; import org.elasticsearch.common.io.stream.StreamOutput; -import org.elasticsearch.common.util.BigArrays; import java.io.IOException; @@ -79,7 +78,7 @@ static BytesRefVector of(StreamInput in) throws IOException { if (constant && positions > 0) { return new ConstantBytesRefVector(in.readBytesRef(), positions); } else { - var builder = BytesRefVector.newVectorBuilder(positions, BigArrays.NON_RECYCLING_INSTANCE); + var builder = BytesRefVector.newVectorBuilder(positions); for (int i = 0; i < positions; i++) { builder.appendBytesRef(in.readBytesRef()); } @@ -101,12 +100,8 @@ default void writeTo(StreamOutput out) throws IOException { } } - static Builder newVectorBuilder(int estimatedSize) { // For now - return new BytesRefVectorBuilder(estimatedSize, BigArrays.NON_RECYCLING_INSTANCE); - } - - static Builder newVectorBuilder(int estimatedSize, BigArrays bigArrays) { - return new BytesRefVectorBuilder(estimatedSize, bigArrays); + static Builder newVectorBuilder(int estimatedSize) { + return new BytesRefVectorBuilder(estimatedSize); } sealed interface Builder extends Vector.Builder permits BytesRefVectorBuilder {