summaryrefslogtreecommitdiff
path: root/src/mongo/db/pipeline/document_source_graph_lookup.h
diff options
context:
space:
mode:
authorMihai Andrei <mihai.andrei@mongodb.com>2020-01-29 15:13:38 -0500
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-02-19 22:44:37 +0000
commitc54a777a4a154984f5595b11993d7d009350a38c (patch)
treeb709682805f4ebc99aab698beeeefc83427668d9 /src/mongo/db/pipeline/document_source_graph_lookup.h
parentd8810b45d790ebce228ff484dfc27494aadd2c6b (diff)
downloadmongo-c54a777a4a154984f5595b11993d7d009350a38c.tar.gz
SERVER-44689 Add serverStatus counter for each use of an aggregation stage in a user's request
Diffstat (limited to 'src/mongo/db/pipeline/document_source_graph_lookup.h')
-rw-r--r--src/mongo/db/pipeline/document_source_graph_lookup.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mongo/db/pipeline/document_source_graph_lookup.h b/src/mongo/db/pipeline/document_source_graph_lookup.h
index 979c1dde866..f9124816b08 100644
--- a/src/mongo/db/pipeline/document_source_graph_lookup.h
+++ b/src/mongo/db/pipeline/document_source_graph_lookup.h
@@ -43,8 +43,9 @@ public:
class LiteParsed : public LiteParsedDocumentSourceForeignCollection {
public:
- LiteParsed(NamespaceString foreignNss)
- : LiteParsedDocumentSourceForeignCollection(std::move(foreignNss)) {}
+ LiteParsed(std::string parseTimeName, NamespaceString foreignNss)
+ : LiteParsedDocumentSourceForeignCollection(std::move(parseTimeName),
+ std::move(foreignNss)) {}
static std::unique_ptr<LiteParsed> parse(const NamespaceString& nss,
const BSONElement& spec);