summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dist/sqlite3.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/dist/sqlite3.c b/dist/sqlite3.c
index 11c954b..e324f8f 100644
--- a/dist/sqlite3.c
+++ b/dist/sqlite3.c
@@ -111116,14 +111116,4 @@ SQLITE_API int sqlite3_set_transaction_default_immediate(sqlite3* db, int immedi
sqlite3_mutex_leave(db->mutex);
return SQLITE_OK;
}
-SQLITE_API void sqlite3_get_pager_stats(sqlite3_int64 * totalBytesOut,
- sqlite3_int64 * referencedBytesOut,
- sqlite3_int64 * dbBytesOut,
- int * numPagersOut){
- // TODO
- *totalBytesOut = 0;
- *referencedBytesOut = 0;
- *dbBytesOut = 0;
- *numPagersOut = 0;
-}
// End Android Add