start simple examples

This commit is contained in:
Alex Garcia 2024-05-10 20:51:42 -07:00
parent 2572aa1413
commit e6067e2711
28 changed files with 1354 additions and 2 deletions

View file

@ -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