diff options
author | Alex Gorrod <alexander.gorrod@mongodb.com> | 2015-09-04 11:01:39 +1000 |
---|---|---|
committer | Alex Gorrod <alexander.gorrod@mongodb.com> | 2015-09-04 11:01:39 +1000 |
commit | aee1c9406a13f5f1a2bc0a950ebf621407afe4b0 (patch) | |
tree | f954854bc94940011349800454628a06d835df82 /src/include/cursor.h | |
parent | 9734d8523b7ad858b1c52de0a08808b3d9e8544f (diff) | |
parent | e1624168d7e44832335d58380ead73336c318275 (diff) | |
download | mongo-aee1c9406a13f5f1a2bc0a950ebf621407afe4b0.tar.gz |
Merge pull request #2171 from wiredtiger/wt-2035-index-read
WT-2035. For index cursors, keep track of which column groups need to be positioned.
Diffstat (limited to 'src/include/cursor.h')
-rw-r--r-- | src/include/cursor.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/cursor.h b/src/include/cursor.h index 2b3a3221004..2f55dfc8186 100644 --- a/src/include/cursor.h +++ b/src/include/cursor.h @@ -261,6 +261,7 @@ struct __wt_cursor_index { WT_CURSOR *child; WT_CURSOR **cg_cursors; + uint8_t *cg_needvalue; }; struct __wt_cursor_json { |