diff options
author | drh <> | 2022-09-17 18:29:49 +0000 |
---|---|---|
committer | drh <> | 2022-09-17 18:29:49 +0000 |
commit | 20a9ed1dc6fd63573e49328d27e955969f18470d (patch) | |
tree | 145e8de6db93635297c37c867a25b1814e43dd1e /src/sqliteInt.h | |
parent | b9fbc558f797d25d50a32150c8fcedf490f74015 (diff) | |
download | sqlite-20a9ed1dc6fd63573e49328d27e955969f18470d.tar.gz sqlite-20a9ed1dc6fd63573e49328d27e955969f18470d.zip |
Include the kv-vfs as an optional VFS on unix builds if the
SQLITE_OS_KV_OPTIONAL compile-time option is present.
FossilOrigin-Name: 852812d1e2ec3c53ad7c6c64662b37d861fefcf1baeee3d58eba88bcb3f6d8df
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 63e3583c8..7f1dee6eb 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -5456,4 +5456,8 @@ void sqlite3VectorErrorMsg(Parse*, Expr*); const char **sqlite3CompileOptions(int *pnOpt); #endif +#if SQLITE_OS_UNIX && defined(SQLITE_OS_KV_OPTIONAL) +int sqlite3KvvfsInit(void); +#endif + #endif /* SQLITEINT_H */ |