Skip to content

Commit 6d1cd2b

Browse files
committed
bump web_vfs
1 parent 9f5fb19 commit 6d1cd2b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ include_directories(${sqlitecpp_SOURCE_DIR}/include)
2929
FetchContent_Declare(
3030
sqlite_web_vfs
3131
GIT_REPOSITORY https://github.com/mlin/sqlite_web_vfs.git
32-
GIT_TAG 892c5c6
32+
GIT_TAG 3cd286f
3333
)
3434
FetchContent_MakeAvailable(sqlite_web_vfs)
3535
FetchContent_MakeAvailable(concurrentqueue)

src/SQLiteNestedVFS.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1225,8 +1225,8 @@ class VFS : public SQLiteVFS::Wrapper {
12251225
if (web) {
12261226
// use sqlite_web_vfs, passing through configuration
12271227
outer_db_uri += "?immutable=1";
1228-
for (const char *passthrough :
1229-
{"web_log", "web_insecure", "web_url", "web_dbi_url", "web_nodbi"}) {
1228+
for (const char *passthrough : {"web_log", "web_insecure", "web_url",
1229+
"web_dbi_url", "web_nodbi", "web_small_KiB"}) {
12301230
if (sqlite3_uri_parameter(zName, passthrough)) {
12311231
outer_db_uri += std::string("&") + passthrough + std::string("=") +
12321232
urlencode(sqlite3_uri_parameter(zName, passthrough));

0 commit comments

Comments
 (0)