Skip to content

Commit

Permalink
Remove HNSW block size info in show index other parameter part
Browse files Browse the repository at this point in the history
Signed-off-by: Jin Hai <haijin.chn@gmail.com>
  • Loading branch information
JinHai-CN committed Aug 28, 2024
1 parent faee015 commit b97a721
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/storage/definition/index_hnsw.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ String IndexHnsw::ToString() const {
String IndexHnsw::BuildOtherParamsString() const {
std::stringstream ss;
ss << "metric = " << MetricTypeToString(metric_type_) << ", encode_type = " << HnswEncodeTypeToString(encode_type_) << ", M = " << M_
<< ", ef_construction = " << ef_construction_ << ", block_size = " << block_size_;
<< ", ef_construction = " << ef_construction_;
return ss.str();
}

Expand Down

0 comments on commit b97a721

Please sign in to comment.