fix(release-gate): map admin billing paths and repair pgvector test
Memind CI / Test, build, and release guards (push) Failing after 3s

Allow image-quota admin files in impact selection and update Memory V2
runtime test for hybrid pgvector keyword query.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
john
2026-08-03 15:08:02 +08:00
parent 35ec2e3544
commit 36b1ae3992
2 changed files with 9 additions and 5 deletions
+7 -5
View File
@@ -385,11 +385,13 @@ test('createMemoryV2Runtime selects pgvector only when pool and embedding are co
assert.equal(memory.getStatus().selectedBackend, 'pgvector');
assert.equal(result.source, 'pgvector');
assert.deepEqual(result.semanticMemories, ['semantic memory']);
assert.equal(queries.length, 1);
assert.equal(queries[0].options.connectionString, 'postgresql://local/memory');
assert.equal(queries[0].options.max, 2);
assert.match(queries[0].sql, /recent_candidates/);
assert.deepEqual(queries[0].params, ['u1', '[0.1,0.2,0.3]', 50]);
assert.equal(queries.length, 2);
const semanticQuery = queries.find((entry) => /recent_candidates/.test(entry.sql));
assert.ok(semanticQuery);
assert.equal(semanticQuery.options.connectionString, 'postgresql://local/memory');
assert.equal(semanticQuery.options.max, 2);
assert.match(semanticQuery.sql, /recent_candidates/);
assert.deepEqual(semanticQuery.params, ['u1', '[0.1,0.2,0.3]', 50]);
await memory.close();
assert.equal(poolEnded, true);