mirror of
https://github.com/asg017/sqlite-vec.git
synced 2026-04-25 00:36:56 +02:00
start simple examples
This commit is contained in:
parent
2572aa1413
commit
e6067e2711
28 changed files with 1354 additions and 2 deletions
12
sqlite-vec.c
12
sqlite-vec.c
|
|
@ -1783,7 +1783,10 @@ static sqlite3_module vec_eachModule = {
|
|||
/* xRelease */ 0,
|
||||
/* xRollbackTo */ 0,
|
||||
/* xShadowName */ 0,
|
||||
/* xIntegrity */ 0};
|
||||
#if SQLITE_VERSION_NUMBER >= 3440000
|
||||
/* xIntegrity */ 0
|
||||
#endif
|
||||
};
|
||||
|
||||
#pragma endregion
|
||||
|
||||
|
|
@ -2388,7 +2391,10 @@ static sqlite3_module vec_npy_eachModule = {
|
|||
/* xRelease */ 0,
|
||||
/* xRollbackTo */ 0,
|
||||
/* xShadowName */ 0,
|
||||
/* xIntegrity */ 0};
|
||||
#if SQLITE_VERSION_NUMBER >= 3440000
|
||||
/* xIntegrity */ 0,
|
||||
#endif
|
||||
};
|
||||
|
||||
#pragma endregion
|
||||
|
||||
|
|
@ -4432,7 +4438,9 @@ static sqlite3_module vec0Module = {
|
|||
/* xRelease */ 0,
|
||||
/* xRollbackTo */ 0,
|
||||
/* xShadowName */ vec0ShadowName,
|
||||
#if SQLITE_VERSION_NUMBER >= 3440000
|
||||
/* xIntegrity */ 0, // TODO
|
||||
#endif
|
||||
};
|
||||
#pragma endregion
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue