diff options
Diffstat (limited to 'src/include/wiredtiger.in')
-rw-r--r-- | src/include/wiredtiger.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/include/wiredtiger.in b/src/include/wiredtiger.in index 870f5968867..b81cb966947 100644 --- a/src/include/wiredtiger.in +++ b/src/include/wiredtiger.in @@ -428,15 +428,15 @@ struct __wt_cursor { #define WT_CURSTD_APPEND 0x0001 #define WT_CURSTD_DUMP_HEX 0x0002 #define WT_CURSTD_DUMP_PRINT 0x0004 -#define WT_CURSTD_KEY_APP 0x0008 -#define WT_CURSTD_KEY_RET 0x0010 -#define WT_CURSTD_KEY_SET (WT_CURSTD_KEY_APP | WT_CURSTD_KEY_RET) +#define WT_CURSTD_KEY_EXT 0x0008 /* Key points out of the tree. */ +#define WT_CURSTD_KEY_INT 0x0010 /* Key points into the tree. */ +#define WT_CURSTD_KEY_SET (WT_CURSTD_KEY_EXT | WT_CURSTD_KEY_INT) #define WT_CURSTD_OPEN 0x0020 #define WT_CURSTD_OVERWRITE 0x0040 #define WT_CURSTD_RAW 0x0080 -#define WT_CURSTD_VALUE_APP 0x0100 -#define WT_CURSTD_VALUE_RET 0x0200 -#define WT_CURSTD_VALUE_SET (WT_CURSTD_VALUE_APP | WT_CURSTD_VALUE_RET) +#define WT_CURSTD_VALUE_EXT 0x0100 /* Value points out of the tree. */ +#define WT_CURSTD_VALUE_INT 0x0200 /* Value points into the tree. */ +#define WT_CURSTD_VALUE_SET (WT_CURSTD_VALUE_EXT | WT_CURSTD_VALUE_INT) uint32_t flags; #endif }; |