summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/sqlite/amalgamation/sqlite3.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/sqlite/amalgamation/sqlite3.h')
-rw-r--r--chromium/third_party/sqlite/amalgamation/sqlite3.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/chromium/third_party/sqlite/amalgamation/sqlite3.h b/chromium/third_party/sqlite/amalgamation/sqlite3.h
index 5d56618caef..91ac9145f89 100644
--- a/chromium/third_party/sqlite/amalgamation/sqlite3.h
+++ b/chromium/third_party/sqlite/amalgamation/sqlite3.h
@@ -4691,21 +4691,6 @@ struct sqlite3_index_info {
double estimatedCost; /* Estimated cost of using this index */
};
-/* Begin preload-cache.patch for Chromium */
-/*
-** Preload the databases into the pager cache, up to the maximum size of the
-** pager cache.
-**
-** For a database to be loaded successfully, the pager must be active. That is,
-** there must be an open statement on that database. See sqlite3pager_loadall
-**
-** There might be many databases attached to the given connection. We iterate
-** them all and try to load them. If none are loadable successfully, we return
-** an error. Otherwise, we return OK.
-*/
-SQLITE_API int sqlite3_preload(sqlite3 *db);
-/* End preload-cache.patch for Chromium */
-
/*
** CAPI3REF: Virtual Table Constraint Operator Codes
**