aboutsummaryrefslogtreecommitdiff
path: root/src/btree.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2016-10-03 01:21:51 +0000
committerdrh <drh@noemail.net>2016-10-03 01:21:51 +0000
commitcb43a937e57113a21ee0b2ef52a532073c8d3a2d (patch)
tree71d34aeef018ea126e78b2eab4ca89b7115d055d /src/btree.c
parent1a7df58c1aae72f73c183ec7a48a19d773177ccb (diff)
downloadsqlite-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.c2
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 ){