diff options
author | drh <drh@noemail.net> | 2020-07-20 12:47:32 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2020-07-20 12:47:32 +0000 |
commit | e9261dbd53b1ebb631f4dcc3d2cc85dd3c9471e6 (patch) | |
tree | 1b81b72b7c2a26c7094657a9a217be1b2b69fe20 /src/sqliteInt.h | |
parent | 51da8daf822a8c27fd2f4646c4c19d8ed23a7e73 (diff) | |
download | sqlite-e9261dbd53b1ebb631f4dcc3d2cc85dd3c9471e6.tar.gz sqlite-e9261dbd53b1ebb631f4dcc3d2cc85dd3c9471e6.zip |
Initial changes to allow database up to 281TB in size.
FossilOrigin-Name: 9cb7da9bdb666ea40771513b89591dca275f1e92092b39190df747e3797178a3
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 68f08bc2e..914456ac9 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -1186,9 +1186,9 @@ typedef int VList; ** "BusyHandler" typedefs. vdbe.h also requires a few of the opaque ** pointer types (i.e. FuncDef) defined above. */ +#include "pager.h" #include "btree.h" #include "vdbe.h" -#include "pager.h" #include "pcache.h" #include "os.h" #include "mutex.h" |