summaryrefslogtreecommitdiff
path: root/src/mongo/dbtests/repltests.cpp
diff options
context:
space:
mode:
authorGeert Bosch <geert@mongodb.com>2017-06-15 00:20:33 -0400
committerGeert Bosch <geert@mongodb.com>2017-06-23 15:11:09 -0400
commita69ae445303fc4821c6745866b3902623a385c1c (patch)
tree177cab03d8078defe675fd0dff15349cc32401c0 /src/mongo/dbtests/repltests.cpp
parent3bb0f6030b5609002049ea2156e97fe4c6c05d5d (diff)
downloadmongo-a69ae445303fc4821c6745866b3902623a385c1c.tar.gz
SERVER-27992 Use UUIDs for replication
Diffstat (limited to 'src/mongo/dbtests/repltests.cpp')
-rw-r--r--src/mongo/dbtests/repltests.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/mongo/dbtests/repltests.cpp b/src/mongo/dbtests/repltests.cpp
index 9cb4b18af93..48fb0381342 100644
--- a/src/mongo/dbtests/repltests.cpp
+++ b/src/mongo/dbtests/repltests.cpp
@@ -891,20 +891,6 @@ public:
}
};
-class EmptyPushSparseIndex : public EmptyPush {
-public:
- EmptyPushSparseIndex() {
- _client.insert("unittests.system.indexes",
- BSON("ns" << ns() << "key" << BSON("a" << 1) << "name"
- << "foo"
- << "sparse"
- << true));
- }
- ~EmptyPushSparseIndex() {
- _client.dropIndexes(ns());
- }
-};
-
class PushAll : public Base {
public:
void doIt() const {
@@ -1465,7 +1451,6 @@ public:
add<Idempotence::PushUpsert>();
add<Idempotence::MultiPush>();
add<Idempotence::EmptyPush>();
- add<Idempotence::EmptyPushSparseIndex>();
add<Idempotence::PushAll>();
add<Idempotence::PushSlice>();
add<Idempotence::PushSliceInitiallyInexistent>();