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/btree.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/btree.h')
-rw-r--r-- | src/btree.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/btree.h b/src/btree.h index 4c2a872bb..e00c473c9 100644 --- a/src/btree.h +++ b/src/btree.h @@ -262,7 +262,7 @@ int sqlite3BtreeDelete(BtCursor*, u8 flags); #define BTREE_SAVEPOSITION 0x02 /* Leave cursor pointing at NEXT or PREV */ #define BTREE_AUXDELETE 0x04 /* not the primary delete operation */ #define BTREE_APPEND 0x08 /* Insert is likely an append */ -#define BTREE_PREFORMAT 0x10 /* Insert is likely an append */ +#define BTREE_PREFORMAT 0x80 /* Insert is likely an append */ /* An instance of the BtreePayload object describes the content of a single ** entry in either an index or table btree. @@ -362,7 +362,7 @@ void sqlite3BtreeCursorList(Btree*); int sqlite3BtreeCheckpoint(Btree*, int, int *, int *); #endif -int sqlite3BtreeTransfer(BtCursor*, BtCursor*, i64, int); +int sqlite3BtreeTransferRow(BtCursor*, BtCursor*, i64); /* ** If we are not using shared cache, then there is no need to |