summaryrefslogtreecommitdiff
path: root/src/mongo/db/pipeline
diff options
context:
space:
mode:
authorDavid Storch <david.storch@10gen.com>2016-07-25 16:30:44 -0700
committerDavid Storch <david.storch@10gen.com>2016-07-25 16:30:44 -0700
commit7cd2040f0b4a5e2666bafbd0485400468e86ec9e (patch)
tree46efc93d5705b4daf25beefec5b33dc8de26779a /src/mongo/db/pipeline
parent06f3d15f434ca3b8dff82402ab2fdeb496ecab57 (diff)
downloadmongo-7cd2040f0b4a5e2666bafbd0485400468e86ec9e.tar.gz
SERVER-25139 make related TODO comments refer to this ticket
Diffstat (limited to 'src/mongo/db/pipeline')
-rw-r--r--src/mongo/db/pipeline/document_source.h4
-rw-r--r--src/mongo/db/pipeline/lookup_set_cache.h2
-rw-r--r--src/mongo/db/pipeline/value_comparator.h4
3 files changed, 5 insertions, 5 deletions
diff --git a/src/mongo/db/pipeline/document_source.h b/src/mongo/db/pipeline/document_source.h
index 65bf191c872..d9ea2177c62 100644
--- a/src/mongo/db/pipeline/document_source.h
+++ b/src/mongo/db/pipeline/document_source.h
@@ -1615,7 +1615,7 @@ private:
* Queries separate collection for equality matches with documents in the pipeline collection.
* Adds matching documents to a new array field in the input document.
*
- * TODO SERVER-23349: Make $lookup respect the collation.
+ * TODO SERVER-25139: Make $lookup respect the collation.
*/
class DocumentSourceLookUp final : public DocumentSourceNeedsMongod,
public SplittableDocumentSource {
@@ -1693,7 +1693,7 @@ private:
boost::optional<Document> _input;
};
-// TODO SERVER-23349: Make $graphLookup respect the collation.
+// TODO SERVER-25139: Make $graphLookup respect the collation.
class DocumentSourceGraphLookUp final : public DocumentSourceNeedsMongod {
public:
boost::optional<Document> getNext() final;
diff --git a/src/mongo/db/pipeline/lookup_set_cache.h b/src/mongo/db/pipeline/lookup_set_cache.h
index 2c4bf5869f1..5ef9cea62dc 100644
--- a/src/mongo/db/pipeline/lookup_set_cache.h
+++ b/src/mongo/db/pipeline/lookup_set_cache.h
@@ -58,7 +58,7 @@ using boost::multi_index::indexed_by;
* a specific amount of memory. Memory usage includes only the size of the elements in the cache at
* the time of insertion, not the overhead incurred by the data structures in use.
*
- * TODO SERVER-23349: This class must make all comparisons of user data using the aggregation
+ * TODO SERVER-25139: This class must make all comparisons of user data using the aggregation
* operation's collation.
*/
class LookupSetCache {
diff --git a/src/mongo/db/pipeline/value_comparator.h b/src/mongo/db/pipeline/value_comparator.h
index 5479ef149eb..e6c55ed35cf 100644
--- a/src/mongo/db/pipeline/value_comparator.h
+++ b/src/mongo/db/pipeline/value_comparator.h
@@ -43,7 +43,7 @@ public:
/**
* Functor compatible for use with unordered STL containers.
*
- * TODO SERVER-23349: Remove the no-arguments constructor.
+ * TODO SERVER-25139: Remove the no-arguments constructor.
*/
class EqualTo {
public:
@@ -78,7 +78,7 @@ public:
/**
* Functor for computing the hash of a Value, compatible for use with unordered STL containers.
*
- * TODO SERVER-23349: Remove the no-arguments constructor.
+ * TODO SERVER-25139: Remove the no-arguments constructor.
*/
class Hasher {
public: