diff options
Diffstat (limited to 'src/loadext.c')
-rw-r--r-- | src/loadext.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/loadext.c b/src/loadext.c index cefe2eb94..bba431096 100644 --- a/src/loadext.c +++ b/src/loadext.c @@ -487,11 +487,19 @@ static const sqlite3_api_routines sqlite3Apis = { sqlite3_autovacuum_pages, /* Version 3.38.0 and later */ sqlite3_error_offset, +#ifndef SQLITE_OMIT_VIRTUALTABLE sqlite3_vtab_rhs_value, sqlite3_vtab_distinct, sqlite3_vtab_in, sqlite3_vtab_in_first, sqlite3_vtab_in_next, +#else + 0, + 0, + 0, + 0, + 0, +#endif /* Version 3.39.0 and later */ #ifndef SQLITE_OMIT_DESERIALIZE sqlite3_deserialize, |