Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions vector/src/include/index/hnsw_index.h
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,7 @@ class OnDiskHNSWIndex final : public HNSWIndex {
common::column_id_t columnID, storage::visible_func isVisible) override;
void update(transaction::Transaction* transaction, const common::ValueVector& nodeIDVector,
common::ValueVector& propertyVector, UpdateState& updateState) override;
bool updateAfterTableWrite() const override { return true; }

static storage::IndexType getIndexType() {
static const storage::IndexType HNSW_INDEX_TYPE{"HNSW",
Expand Down
Loading