pub fn validate_table_name(table: &str) -> Result<(), VectorStoreError>Expand description
Validate that a table name is safe for SQL interpolation.
Only allows: ^[a-zA-Z_][a-zA-Z0-9_]*$
This prevents SQL injection via table names.
pub fn validate_table_name(table: &str) -> Result<(), VectorStoreError>Validate that a table name is safe for SQL interpolation.
Only allows: ^[a-zA-Z_][a-zA-Z0-9_]*$
This prevents SQL injection via table names.