Files
qdrant/lib/segment/tests/integration/main.rs
xzfc 89d399ef99 Incremental HNSW index building: append-only case (#6325)
* Pass FeatureFlags into VectorIndexBuildArgs

* Incremental HNSW index building: append-only case

* Use debug_assert

* first_few_ids

* Check deleted_point_count

* Drop unused method
2025-04-09 18:56:53 +00:00

26 lines
675 B
Rust

mod batch_search_test;
mod byte_storage_hnsw_test;
mod byte_storage_quantization_test;
mod disbalanced_vectors_test;
mod exact_search_test;
mod fail_recovery_test;
mod filtering_context_check;
mod filtrable_hnsw_test;
mod fixtures;
#[cfg(feature = "gpu")]
mod gpu_hnsw_test;
mod hnsw_discover_test;
mod hnsw_incremental_build;
mod hnsw_quantized_search_test;
mod multivector_filtrable_hnsw_test;
mod multivector_hnsw_test;
mod multivector_quantization_test;
mod nested_filtering_test;
mod payload_index_test;
mod scroll_filtering_test;
mod segment_builder_test;
mod segment_on_disk_snapshot;
mod segment_tests;
mod sparse_discover_test;
mod sparse_vector_index_search_tests;