| 441 | } |
| 442 | |
| 443 | static 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 | |
| 453 | static int fvecsEachClose(sqlite3_vtab_cursor *cur) { |
| 454 |
nothing calls this directly
no outgoing calls
no test coverage detected