Skip to content

Commit 37529b7

Browse files
authored
covering index of btree interior pages (#9)
with sqlite_web_vfs' new .dbi feature as a force multiplier
1 parent 85af802 commit 37529b7

File tree

6 files changed

+217
-62
lines changed

6 files changed

+217
-62
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
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 41cc28c
32+
GIT_TAG 84a8286
3333
)
3434
FetchContent_MakeAvailable(sqlite_web_vfs)
3535
FetchContent_MakeAvailable(concurrentqueue)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Standalone instructions follow.
1717
Prerequisites:
1818

1919
* C++11 compiler, CMake >= 3.11
20-
* *Up-to-date* packages for SQLite3 and Zstandard development, e.g. Ubuntu 20.04 `sqlite3 libsqlite3-dev libzstd-dev`
20+
* *Up-to-date* packages for SQLite3, Zstandard, and libcurl development, e.g. Ubuntu 20.04 `sqlite3 libsqlite3-dev libzstd-dev libcurl4-openssl-dev`
2121

2222
Fetch source code and compile the [SQLite loadable extension](https://www.sqlite.org/loadext.html):
2323

0 commit comments

Comments
 (0)