Skip to content

Commit 5009508

Browse files
committed
Fix vector format name
1 parent d4c8037 commit 5009508

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

server/src/main/java/module-info.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -456,6 +456,7 @@
456456
org.elasticsearch.index.codec.vectors.es816.ES816HnswBinaryQuantizedVectorsFormat,
457457
org.elasticsearch.index.codec.vectors.es818.ES818BinaryQuantizedVectorsFormat,
458458
org.elasticsearch.index.codec.vectors.es818.ES818HnswBinaryQuantizedVectorsFormat,
459+
org.elasticsearch.index.codec.vectors.es910.ES910HnswVectorsFormat,
459460
org.elasticsearch.index.codec.vectors.IVFVectorsFormat;
460461

461462
provides org.apache.lucene.codecs.Codec

server/src/main/java/org/elasticsearch/index/codec/vectors/es910/ES910HnswVectorsFormat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
*/
4545
public class ES910HnswVectorsFormat extends KnnVectorsFormat {
4646

47-
static final String NAME = "ES910HnswReducedHeapVectorsFormat";
47+
static final String NAME = "ES910HnswVectorsFormat";
4848

4949
static final String META_CODEC_NAME = "Lucene99HnswVectorsFormatMeta";
5050
static final String VECTOR_INDEX_CODEC_NAME = "Lucene99HnswVectorsFormatIndex";

0 commit comments

Comments
 (0)