summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/sorted_data_interface_test_harness.h
diff options
context:
space:
mode:
authorGregory Wlodarek <gregory.wlodarek@mongodb.com>2018-11-30 15:44:58 -0500
committerGregory Wlodarek <gregory.wlodarek@mongodb.com>2018-12-03 17:02:24 -0500
commitf439d76860cf8307c5d6ba3fe421b8c88a7c3d8c (patch)
treea5f31e7082f791f622199bc6781a876ee86f795e /src/mongo/db/storage/sorted_data_interface_test_harness.h
parent2c124b76e1d51a9427efffd804e3ca1cff6a1a11 (diff)
downloadmongo-f439d76860cf8307c5d6ba3fe421b8c88a7c3d8c.tar.gz
SERVER-38333 Support partial indexes in BiggieSE
Diffstat (limited to 'src/mongo/db/storage/sorted_data_interface_test_harness.h')
-rw-r--r--src/mongo/db/storage/sorted_data_interface_test_harness.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mongo/db/storage/sorted_data_interface_test_harness.h b/src/mongo/db/storage/sorted_data_interface_test_harness.h
index 6f3124dabc6..c045d3fa8f5 100644
--- a/src/mongo/db/storage/sorted_data_interface_test_harness.h
+++ b/src/mongo/db/storage/sorted_data_interface_test_harness.h
@@ -90,7 +90,8 @@ class RecoveryUnit;
class SortedDataInterfaceHarnessHelper : public virtual HarnessHelper {
public:
- virtual std::unique_ptr<SortedDataInterface> newSortedDataInterface(bool unique) = 0;
+ virtual std::unique_ptr<SortedDataInterface> newSortedDataInterface(bool unique,
+ bool partial) = 0;
/**
* Creates a new SDI with some initial data.
@@ -98,7 +99,7 @@ public:
* For clarity to readers, toInsert must be sorted.
*/
std::unique_ptr<SortedDataInterface> newSortedDataInterface(
- bool unique, std::initializer_list<IndexKeyEntry> toInsert);
+ bool unique, bool partial, std::initializer_list<IndexKeyEntry> toInsert);
};
/**