diff options
author | dan <Dan Kennedy> | 2020-12-10 18:06:24 +0000 |
---|---|---|
committer | dan <Dan Kennedy> | 2020-12-10 18:06:24 +0000 |
commit | 7aae73588aeb9fd33d26f0d0a654bfbebdccf72c (patch) | |
tree | 4be4a4bb0a2159d5708dcce4fe4e2c03fd1c60e1 /src/btreeInt.h | |
parent | cd1b2d0b5431164787d4acad07940191af992c6a (diff) | |
download | sqlite-7aae73588aeb9fd33d26f0d0a654bfbebdccf72c.tar.gz sqlite-7aae73588aeb9fd33d26f0d0a654bfbebdccf72c.zip |
Better integrate the changes on this branch with OP_Insert and OP_IdxInsert.
FossilOrigin-Name: 101cef14910d6e865a94bc870aed599321b893188062a9a61d70a9434992cf23
Diffstat (limited to 'src/btreeInt.h')
-rw-r--r-- | src/btreeInt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/btreeInt.h b/src/btreeInt.h index c09699fbb..851b8e6c1 100644 --- a/src/btreeInt.h +++ b/src/btreeInt.h @@ -455,6 +455,7 @@ struct BtShared { Btree *pWriter; /* Btree with currently open write transaction */ #endif u8 *pTmpSpace; /* Temp space sufficient to hold a single cell */ + int nPreformatSize; /* Size of last cell written by TransferRow() */ }; /* |