summaryrefslogtreecommitdiff
path: root/src/mongo/db/clientcursor.h
diff options
context:
space:
mode:
authorDavid Storch <david.storch@10gen.com>2015-03-20 15:43:42 -0400
committerDavid Storch <david.storch@10gen.com>2015-03-23 17:44:55 -0400
commit93254f6576ed86c8f459a6d0ec419e23618abd21 (patch)
treebfd55552c3ab38c96be9f37aeda627d425912ed6 /src/mongo/db/clientcursor.h
parent565f050f414888a8ebcc3f3cc4fe6dc737e75271 (diff)
downloadmongo-93254f6576ed86c8f459a6d0ec419e23618abd21.tar.gz
SERVER-15176 remove CollectionMetadataPtr from ClientCursor
This was used for filtering orphaned chunks. However, it no longer needs to be stashed in the ClientCursor, as it now lives in the ShardFilterStage.
Diffstat (limited to 'src/mongo/db/clientcursor.h')
-rw-r--r--src/mongo/db/clientcursor.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/mongo/db/clientcursor.h b/src/mongo/db/clientcursor.h
index 7f2736306c9..c5b8629d675 100644
--- a/src/mongo/db/clientcursor.h
+++ b/src/mongo/db/clientcursor.h
@@ -132,13 +132,6 @@ namespace mongo {
}
//
- // Sharding-specific data. TODO: Document.
- //
-
- void setCollMetadata( CollectionMetadataPtr metadata ){ _collMetadata = metadata; }
- CollectionMetadataPtr getCollMetadata(){ return _collMetadata; }
-
- //
// Replication-related stuff. TODO: Document and clean.
//