summaryrefslogtreecommitdiff
path: root/src/include/async.h
diff options
context:
space:
mode:
authorSusan LoVerso <sue@wiredtiger.com>2014-04-02 15:17:09 -0400
committerSusan LoVerso <sue@wiredtiger.com>2014-04-02 15:17:09 -0400
commit6ccaab2fdd1a7afb542b534f855f2a8e238bfba1 (patch)
tree1a4d4eb5d193dd795b3cd2915b5fac436ae1b0ab /src/include/async.h
parent7aac76761cc7968ec67dd9074f3bd57582ac3e9a (diff)
downloadmongo-6ccaab2fdd1a7afb542b534f855f2a8e238bfba1.tar.gz
Add raw key/value support.
Diffstat (limited to 'src/include/async.h')
-rw-r--r--src/include/async.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/async.h b/src/include/async.h
index 347ff82dd6b..8e30546a6dd 100644
--- a/src/include/async.h
+++ b/src/include/async.h
@@ -57,12 +57,12 @@ struct __wt_async_op_impl {
#define WT_ASYNCOP_DUMP_PRINT 0x0004
#define WT_ASYNCOP_KEY_EXT 0x0008 /* Key points out of the tree. */
#define WT_ASYNCOP_KEY_INT 0x0010 /* Key points into the tree. */
-#define WT_ASYNCOP_KEY_SET (WT_CURSTD_KEY_EXT | WT_CURSTD_KEY_INT)
+#define WT_ASYNCOP_KEY_SET (WT_ASYNCOP_KEY_EXT | WT_ASYNCOP_KEY_INT)
#define WT_ASYNCOP_OVERWRITE 0x0020
#define WT_ASYNCOP_RAW 0x0040
#define WT_ASYNCOP_VALUE_EXT 0x0080 /* Value points out of the tree. */
#define WT_ASYNCOP_VALUE_INT 0x0100 /* Value points into the tree. */
-#define WT_ASYNCOP_VALUE_SET (WT_CURSTD_VALUE_EXT | WT_CURSTD_VALUE_INT)
+#define WT_ASYNCOP_VALUE_SET (WT_ASYNCOP_VALUE_EXT | WT_ASYNCOP_VALUE_INT)
uint32_t flags;
};