vector_xlite 1.4.0

VectorXLite: A fast and lightweight SQLite extension for vector search with payload support.
Documentation
1
2
3
4
5
use crate::constant::*;

pub fn get_vector_table_name(table_name: &str) -> String {
    format!("{}_{}", VECTOR_TABLE_PREFIX, table_name)
}