summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/sorted_data_interface.h
diff options
context:
space:
mode:
authorGregory Wlodarek <gregory.wlodarek@mongodb.com>2019-10-01 20:17:53 +0000
committerevergreen <evergreen@mongodb.com>2019-10-01 20:17:53 +0000
commit6a0a923c9ddd7dfe83dfc0ae12fbfb0e7665bfbc (patch)
tree56b0bfc6f3e15f0e1489d0d8948646958b11ea86 /src/mongo/db/storage/sorted_data_interface.h
parent94545ee7be121f6bf31696d9f14edf4ebc62adf4 (diff)
downloadmongo-6a0a923c9ddd7dfe83dfc0ae12fbfb0e7665bfbc.tar.gz
SERVER-43619 Overload SortedDataInterface::Cursor to return KeyString
Diffstat (limited to 'src/mongo/db/storage/sorted_data_interface.h')
-rw-r--r--src/mongo/db/storage/sorted_data_interface.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mongo/db/storage/sorted_data_interface.h b/src/mongo/db/storage/sorted_data_interface.h
index d546b3b14c6..448d79bf52b 100644
--- a/src/mongo/db/storage/sorted_data_interface.h
+++ b/src/mongo/db/storage/sorted_data_interface.h
@@ -252,6 +252,7 @@ public:
* If not positioned, returns boost::none.
*/
virtual boost::optional<IndexKeyEntry> next(RequestedInfo parts = kKeyAndLoc) = 0;
+ virtual boost::optional<KeyStringEntry> nextKeyString() = 0;
//
// Seeking