diff options
author | drh <drh@noemail.net> | 2015-02-27 20:28:08 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2015-02-27 20:28:08 +0000 |
commit | 9d356fbe6ec6a340f196cb0c31f949dd86de4796 (patch) | |
tree | 607ca425506684852429dcd68bc0a16033b52714 /src/sqliteLimit.h | |
parent | 22ec13466cbc6ce4f3cc642e5c23c5d52dcace27 (diff) | |
download | sqlite-9d356fbe6ec6a340f196cb0c31f949dd86de4796.tar.gz sqlite-9d356fbe6ec6a340f196cb0c31f949dd86de4796.zip |
New requirements marks and a few new test cases to go with them. No changes
to code.
FossilOrigin-Name: 8c2b29d9acb92d47f4deec21a7c2dca52db63345
Diffstat (limited to 'src/sqliteLimit.h')
-rw-r--r-- | src/sqliteLimit.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/sqliteLimit.h b/src/sqliteLimit.h index c7aee53ce..3abad8437 100644 --- a/src/sqliteLimit.h +++ b/src/sqliteLimit.h @@ -98,8 +98,14 @@ #endif /* -** The maximum number of in-memory pages to use for the main database -** table and for temporary tables. The SQLITE_DEFAULT_CACHE_SIZE +** The suggested maximum number of in-memory pages to use for +** the main database table and for temporary tables. +** +** EVIDENCE-OF: R-31093-59126 The default suggested cache size is 2000 +** pages. +** +** EVIDENCE-OF: R-45985-54577 The default cache sizes can be adjusted by +** the SQLITE_DEFAULT_CACHE_SIZE compile-time options. */ #ifndef SQLITE_DEFAULT_CACHE_SIZE # define SQLITE_DEFAULT_CACHE_SIZE 2000 |