File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
resources/transport/definitions/referable
x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/lucene/read Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -240,7 +240,6 @@ static TransportVersion def(int id) {
240240 public static final TransportVersion ML_INFERENCE_COHERE_API_VERSION_8_19 = def (8_841_0_60 );
241241 public static final TransportVersion ESQL_DOCUMENTS_FOUND_AND_VALUES_LOADED_8_19 = def (8_841_0_61 );
242242 public static final TransportVersion ESQL_PROFILE_INCLUDE_PLAN_8_19 = def (8_841_0_62 );
243- public static final TransportVersion ESQL_SPLIT_ON_BIG_VALUES_8_19 = def (8_841_0_63 );
244243 public static final TransportVersion INITIAL_ELASTICSEARCH_8_19_4 = def (8_841_0_68 );
245244
246245 /*
Original file line number Diff line number Diff line change 1+ 9116000,9112001,8841063
Original file line number Diff line number Diff line change 2222import java .util .Objects ;
2323
2424import static org .elasticsearch .TransportVersions .ESQL_DOCUMENTS_FOUND_AND_VALUES_LOADED_8_19 ;
25- import static org .elasticsearch .TransportVersions .ESQL_SPLIT_ON_BIG_VALUES_8_19 ;
2625
2726public class ValuesSourceReaderOperatorStatus extends AbstractPageMappingToIteratorOperator .Status {
2827 public static final NamedWriteableRegistry .Entry ENTRY = new NamedWriteableRegistry .Entry (
@@ -31,6 +30,8 @@ public class ValuesSourceReaderOperatorStatus extends AbstractPageMappingToItera
3130 ValuesSourceReaderOperatorStatus ::readFrom
3231 );
3332
33+ private static final TransportVersion ESQL_SPLIT_ON_BIG_VALUES = TransportVersion .fromName ("esql_split_on_big_values" );
34+
3435 private final Map <String , Integer > readersBuilt ;
3536 private final long valuesLoaded ;
3637
@@ -100,7 +101,7 @@ public void writeTo(StreamOutput out) throws IOException {
100101 }
101102
102103 private static boolean supportsSplitOnBigValues (TransportVersion version ) {
103- return version .onOrAfter ( ESQL_SPLIT_ON_BIG_VALUES_8_19 );
104+ return version .supports ( ESQL_SPLIT_ON_BIG_VALUES );
104105 }
105106
106107 private static boolean supportsValuesLoaded (TransportVersion version ) {
You can’t perform that action at this time.
0 commit comments