We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc96ec3 commit 1c13c5cCopy full SHA for 1c13c5c
server/src/main/java/org/elasticsearch/index/mapper/vectors/DenseVectorFieldMapper.java
@@ -1780,8 +1780,7 @@ boolean updatableTo(IndexOptions update) {
1780
// quantization could not behave as expected with different confidence intervals (and quantiles) to be created
1781
updatable = int4HnswIndexOptions.m >= this.m && confidenceInterval == int4HnswIndexOptions.confidenceInterval;
1782
}
1783
- return updatable
1784
- || (update.type.equals(VectorIndexType.BBQ_HNSW) && ((BBQHnswIndexOptions) update).m >= m);
+ return updatable || (update.type.equals(VectorIndexType.BBQ_HNSW) && ((BBQHnswIndexOptions) update).m >= m);
1785
1786
1787
0 commit comments