2026-08-24 01:37:16 +00:00
|
|
|
// Vector store tests now require PostgreSQL connection
|
|
|
|
|
// See tests with database fixtures or use integration tests
|
2026-08-22 21:43:23 -07:00
|
|
|
|
|
|
|
|
#[test]
|
2026-08-24 01:37:16 +00:00
|
|
|
#[ignore]
|
|
|
|
|
fn _vector_search_requires_database() {
|
|
|
|
|
// VectorStore is now backed by PostgreSQL with pgvector extension
|
|
|
|
|
// Tests require:
|
|
|
|
|
// - Running CNPG cluster
|
|
|
|
|
// - Database initialized with schema
|
|
|
|
|
// - Connection pooling setup
|
|
|
|
|
//
|
|
|
|
|
// Use integration tests with database containers for full testing
|
2026-08-22 21:43:23 -07:00
|
|
|
}
|