You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: server/src/main/java/org/opensearch/search/aggregations/bucket/adjacency/AdjacencyMatrixAggregationBuilder.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -188,7 +188,7 @@ public AdjacencyMatrixAggregationBuilder(StreamInput in) throws IOException {
188
188
super(in);
189
189
intfiltersSize = in.readVInt();
190
190
separator = in.readString();
191
-
if (in.getVersion().onOrAfter(Version.V_3_0_0)) {
191
+
if (in.getVersion().onOrAfter(Version.V_2_19_0)) {
192
192
showOnlyIntersecting = in.readBoolean();
193
193
}
194
194
filters = newArrayList<>(filtersSize);
@@ -201,7 +201,7 @@ public AdjacencyMatrixAggregationBuilder(StreamInput in) throws IOException {
0 commit comments