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) {
240
240
public static final TransportVersion ML_INFERENCE_COHERE_API_VERSION_8_19 = def (8_841_0_60 );
241
241
public static final TransportVersion ESQL_DOCUMENTS_FOUND_AND_VALUES_LOADED_8_19 = def (8_841_0_61 );
242
242
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 );
244
243
public static final TransportVersion INITIAL_ELASTICSEARCH_8_19_4 = def (8_841_0_68 );
245
244
246
245
/*
Original file line number Diff line number Diff line change
1
+ 9116000,9112001,8841063
Original file line number Diff line number Diff line change 22
22
import java .util .Objects ;
23
23
24
24
import 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 ;
26
25
27
26
public class ValuesSourceReaderOperatorStatus extends AbstractPageMappingToIteratorOperator .Status {
28
27
public static final NamedWriteableRegistry .Entry ENTRY = new NamedWriteableRegistry .Entry (
@@ -31,6 +30,8 @@ public class ValuesSourceReaderOperatorStatus extends AbstractPageMappingToItera
31
30
ValuesSourceReaderOperatorStatus ::readFrom
32
31
);
33
32
33
+ private static final TransportVersion ESQL_SPLIT_ON_BIG_VALUES = TransportVersion .fromName ("esql_split_on_big_values" );
34
+
34
35
private final Map <String , Integer > readersBuilt ;
35
36
private final long valuesLoaded ;
36
37
@@ -100,7 +101,7 @@ public void writeTo(StreamOutput out) throws IOException {
100
101
}
101
102
102
103
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 );
104
105
}
105
106
106
107
private static boolean supportsValuesLoaded (TransportVersion version ) {
You can’t perform that action at this time.
0 commit comments