MCPcopy Create free account
hub / github.com/asg017/sqlite-vss / fvecsEachOpen

Function fvecsEachOpen

src/sqlite-vector.cpp:443–451  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

441}
442
443static int fvecsEachOpen(sqlite3_vtab *p, sqlite3_vtab_cursor **ppCursor) {
444
445 auto pCur = new fvecsEach_cursor(p);
446 if (pCur == nullptr)
447 return SQLITE_NOMEM;
448
449 *ppCursor = pCur;
450 return SQLITE_OK;
451}
452
453static int fvecsEachClose(sqlite3_vtab_cursor *cur) {
454

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected