aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2013-03-25 23:09:28 +0000
committerdrh <drh@noemail.net>2013-03-25 23:09:28 +0000
commit0d0614bdc6e59c1cb52bc79fdf8dafbbc78f57f9 (patch)
tree409fd2a1a127c4019c63da08d0d182db3d76a9be /src/sqliteInt.h
parentd1ab8065c1039db43eb413702cafb3baa500d69a (diff)
downloadsqlite-0d0614bdc6e59c1cb52bc79fdf8dafbbc78f57f9.tar.gz
sqlite-0d0614bdc6e59c1cb52bc79fdf8dafbbc78f57f9.zip
Memory-mapped I/O is now on by default. The "PRAGMA mmap_limit(N)" can be
used to issue a hint to the VFS to limit mmap space to N bytes. The VFS is free to ignore that hint if desired. However, if "PRAGMA mmap_limit(0)" is used, xFetch is never called. FossilOrigin-Name: 1b37c4effdd03aa2ea938a71b4f22ed27391689b
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 59483bc87..129c4c5ea 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -746,7 +746,6 @@ struct Schema {
u8 enc; /* Text encoding used by this database */
u16 flags; /* Flags associated with this schema */
int cache_size; /* Number of pages to use in the cache */
- int mmap_size; /* Number of pages to memory map */
};
/*