Skip to content
This repository was archived by the owner on Oct 10, 2025. It is now read-only.
This repository was archived by the owner on Oct 10, 2025. It is now read-only.

Bug: Vector index: cannot create index with same name on multiple tables #5141

@sdht0

Description

@sdht0
CREATE NODE TABLE embeddings (id int64, title STRING, vec FLOAT[384], vec2 FLOAT[384], PRIMARY KEY (id));
CREATE NODE TABLE embeddings2 (id int64, title STRING, vec FLOAT[384], vec2 FLOAT[384], PRIMARY KEY (id));
CALL CREATE_VECTOR_INDEX('embeddings', 'e_hnsw_index', 'vec', metric := 'cosine', efc:=500);
CALL CREATE_VECTOR_INDEX('embeddings2', 'e_hnsw_index', 'vec', metric := 'cosine', efc:=500);
Error: Binder exception: _e_hnsw_index_UPPER already exists in catalog.

Metadata

Metadata

Assignees

Labels

No labels
No labels

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions