diff options
author | Ridhwaan Anayetullah <ridhwaan.any@gmail.com> | 2021-06-14 12:38:47 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2021-06-16 23:38:13 +0000 |
commit | 8e5680998271781fe04d9f3c87ca5e09fd2dae86 (patch) | |
tree | 1b4341c1a3977b8354995b7897ab2b3d52bc576e /src/mongo/db/pipeline/document_source_densify.cpp | |
parent | e3dbc111bf3e3167346aa20f9b9558b8b7c70303 (diff) | |
download | mongo-8e5680998271781fe04d9f3c87ca5e09fd2dae86.tar.gz |
SERVER-57332 Create skeleton InternalDocumentSourceDensify
Diffstat (limited to 'src/mongo/db/pipeline/document_source_densify.cpp')
-rw-r--r-- | src/mongo/db/pipeline/document_source_densify.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mongo/db/pipeline/document_source_densify.cpp b/src/mongo/db/pipeline/document_source_densify.cpp index 7f537a6a9b6..c7d8b122c31 100644 --- a/src/mongo/db/pipeline/document_source_densify.cpp +++ b/src/mongo/db/pipeline/document_source_densify.cpp @@ -141,4 +141,8 @@ bool DocumentSourceInternalDensify::DocGenerator::done() const { return _state == GeneratorState::kDone; } +DocumentSource::GetNextResult DocumentSourceInternalDensify::doGetNext() { + return pSource->getNext(); +} + } // namespace mongo |