diff options
Diffstat (limited to 'third_party/sqlite/amalgamation/sqlite3.h')
-rw-r--r-- | third_party/sqlite/amalgamation/sqlite3.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/third_party/sqlite/amalgamation/sqlite3.h b/third_party/sqlite/amalgamation/sqlite3.h index 5d56618..91ac914 100644 --- a/third_party/sqlite/amalgamation/sqlite3.h +++ b/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 ** |