diff options
author | drh <drh@noemail.net> | 2016-10-03 01:21:51 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2016-10-03 01:21:51 +0000 |
commit | cb43a937e57113a21ee0b2ef52a532073c8d3a2d (patch) | |
tree | 71d34aeef018ea126e78b2eab4ca89b7115d055d /src/btree.c | |
parent | 1a7df58c1aae72f73c183ec7a48a19d773177ccb (diff) | |
download | sqlite-cb43a937e57113a21ee0b2ef52a532073c8d3a2d.tar.gz sqlite-cb43a937e57113a21ee0b2ef52a532073c8d3a2d.zip |
Allocate Parse objects off of the stack where appropriate for a substantial
performance increase and a size reduction.
FossilOrigin-Name: ea8affa9e453b201b479162f621b591e7a65a489
Diffstat (limited to 'src/btree.c')
-rw-r--r-- | src/btree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/btree.c b/src/btree.c index 681285ac9..45b4750b7 100644 --- a/src/btree.c +++ b/src/btree.c @@ -763,7 +763,7 @@ static int btreeMoveto( ){ int rc; /* Status code */ UnpackedRecord *pIdxKey; /* Unpacked index key */ - char aSpace[200]; /* Temp space for pIdxKey - to avoid a malloc */ + char aSpace[384]; /* Temp space for pIdxKey - to avoid a malloc */ char *pFree = 0; if( pKey ){ |