//! Index Operations Module
//!
//! Modular structure for different index types:
//! - timestamp: Timestamp range queries
//! - column: Column value indexes for WHERE optimization
//! - text: Full-text search with BM25 ranking
//! - spatial: Geospatial queries with hybrid grid+RTree
//! - vector: Vector similarity search with DiskANN
// Re-export for convenience
pub use ;
pub use SpatialIndexStats;
pub use VectorIndexStats;