(version)
| 46 | |
| 47 | // iterative_scan (relaxed_order) landed in pgvector 0.8.0. |
| 48 | export function supportsIterativeScan(version) { |
| 49 | if (!version) return false; |
| 50 | return version.major > 0 || (version.major === 0 && version.minor >= 8); |
| 51 | } |
| 52 | |
| 53 | // ef_search clamp for a given result limit: enough candidates to survive |
| 54 | // client_id post-filtering without collapsing recall on sparse tenants, capped |
no outgoing calls
no test coverage detected