1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

Change the name of the BTREE_IDXDELETE flag to BTREE_AUXDELETE, to better

reflect its purpose.

FossilOrigin-Name: 1d3bf6bebdda9f96734bc139601e9b05344ea0b4
This commit is contained in:
drh
2016-01-27 16:26:25 +00:00
parent 127f720240
commit def19e3b48
7 changed files with 33 additions and 30 deletions

View File

@@ -249,7 +249,7 @@ int sqlite3BtreeDelete(BtCursor*, u8 flags);
/* Allowed flags for the 2nd argument to sqlite3BtreeDelete() */
#define BTREE_SAVEPOSITION 0x02 /* Leave cursor pointing at NEXT or PREV */
#define BTREE_IDXDELETE 0x04 /* this is index, table row already deleted */
#define BTREE_AUXDELETE 0x04 /* not the primary delete operation */
int sqlite3BtreeInsert(BtCursor*, const void *pKey, i64 nKey,
const void *pData, int nData,