diff options
Diffstat (limited to 'src/btreeInt.h')
-rw-r--r-- | src/btreeInt.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/btreeInt.h b/src/btreeInt.h index 121329725..17e3a1add 100644 --- a/src/btreeInt.h +++ b/src/btreeInt.h @@ -497,6 +497,12 @@ struct CellInfo { #define BTCURSOR_MAX_DEPTH 20 /* +** Maximum amount of storage local to a database page, regardless of +** page size. +*/ +#define BT_MAX_LOCAL 65501 /* 65536 - 35 */ + +/* ** A cursor is a pointer to a particular entry within a particular ** b-tree within a database file. ** |