start to integrate pager

This commit is contained in:
Hongze Cheng 2022-02-21 09:47:39 +00:00
parent 9f6f7449e8
commit 44b3007485
2 changed files with 2 additions and 3 deletions

View File

@ -23,6 +23,7 @@ target_sources(tdb_sqlite
PRIVATE
"src/sqlite/pcache.c"
"src/sqlite/pcache1.c"
"src/sqlite/pager.c"
)
target_include_directories(tdb_sqlite PUBLIC "src/sqliteinc")

View File

@ -43,9 +43,7 @@ typedef struct sqlite3_pcache_page {
#define ROUND8(x) (((x) + 7) & ~7)
typedef u32 Pgno;
typedef struct Pager Pager;
#include "pager.h"
#include "pcache.h"