diff options
author | Nicholas Zolnierz <nicholas.zolnierz@mongodb.com> | 2019-08-15 20:08:22 +0000 |
---|---|---|
committer | evergreen <evergreen@mongodb.com> | 2019-08-15 20:08:22 +0000 |
commit | c0ca6049bad1bf918e46d83cddab134b7441abf7 (patch) | |
tree | 23380aabf54cf84939ef062611d652ba7ad21905 /src/mongo/db/pipeline/mongo_process_interface.h | |
parent | 7c8f6dcb7f0bf2e397f470e8bca1cc0185216cb4 (diff) | |
download | mongo-c0ca6049bad1bf918e46d83cddab134b7441abf7.tar.gz |
SERVER-42684 Add support for 'scope' RunTimeConstant
Diffstat (limited to 'src/mongo/db/pipeline/mongo_process_interface.h')
-rw-r--r-- | src/mongo/db/pipeline/mongo_process_interface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/pipeline/mongo_process_interface.h b/src/mongo/db/pipeline/mongo_process_interface.h index 1899cf08053..58958aced64 100644 --- a/src/mongo/db/pipeline/mongo_process_interface.h +++ b/src/mongo/db/pipeline/mongo_process_interface.h @@ -414,7 +414,7 @@ public: * Returns a pointer to a JsExecution and a boolean to indicate whether the JS Scope was newly * created. */ - virtual std::pair<JsExecution*, bool> getJsExec() = 0; + virtual std::pair<JsExecution*, bool> getJsExec(const BSONObj& scope) = 0; virtual void releaseJsExec() = 0; }; |