lance_index/vector/shared/mod.rs
1// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: Copyright The Lance Authors
3
4//! Shared helpers for partition-level IVF metadata and writer initialization.
5//!
6//! This module centralizes common logic used by both the distributed index
7//! merger and the classic IVF index builder, to avoid duplicating how we
8//! initialize writers and write IVF / index metadata.
9
10pub mod partition_merger;
11pub use partition_merger::*;