@@ -181,10 +181,10 @@ Result<std::vector<IdType>> VerticesCollection::filter(
181181 row_num = std::min (CHUNK_SIZE, TOT_ROWS_NUM - chunk_idx * CHUNK_SIZE);
182182 std::string new_filename =
183183 prefix_ + vertex_info_->GetPrefix () + " labels/chunk" ;
184- int count = graphar:: read_parquet_file_and_get_valid_indices (
184+ int count = read_parquet_file_and_get_valid_indices (
185185 new_filename.c_str (), row_num, TOT_LABEL_NUM, TESTED_LABEL_NUM,
186186 tested_label_ids, IsValid, chunk_idx, CHUNK_SIZE, &indices, bitmap,
187- graphar:: QUERY_TYPE::INDEX);
187+ QUERY_TYPE::INDEX);
188188 if (count != 0 && new_valid_chunk != nullptr )
189189 new_valid_chunk->emplace_back (static_cast <IdType>(chunk_idx));
190190 }
@@ -194,10 +194,10 @@ Result<std::vector<IdType>> VerticesCollection::filter(
194194 row_num = std::min (CHUNK_SIZE, TOT_ROWS_NUM - chunk_idx * CHUNK_SIZE);
195195 std::string new_filename =
196196 prefix_ + vertex_info_->GetPrefix () + " labels/chunk" ;
197- int count = graphar:: read_parquet_file_and_get_valid_indices (
197+ int count = read_parquet_file_and_get_valid_indices (
198198 new_filename.c_str (), row_num, TOT_LABEL_NUM, TESTED_LABEL_NUM,
199199 tested_label_ids, IsValid, chunk_idx, CHUNK_SIZE, &indices, bitmap,
200- graphar:: QUERY_TYPE::INDEX);
200+ QUERY_TYPE::INDEX);
201201 if (count != 0 )
202202 valid_chunk_.emplace_back (static_cast <IdType>(chunk_idx));
203203 }
0 commit comments