diff options
author | Nikita Lapkov <nikita.lapkov@mongodb.com> | 2020-09-25 14:49:29 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-10-07 12:39:18 +0000 |
commit | 05b8d1423832addcbccd7ec04448ea13fc6ba1c2 (patch) | |
tree | 8972a3ebf8afe4d6dddafc9d4f584f0c172217cd /src/mongo/db/pipeline | |
parent | 09a0264b07a47ad038e873e7c3cf9355a5266c81 (diff) | |
download | mongo-05b8d1423832addcbccd7ec04448ea13fc6ba1c2.tar.gz |
SERVER-50732 Support $filter expression in SBE
Diffstat (limited to 'src/mongo/db/pipeline')
-rw-r--r-- | src/mongo/db/pipeline/expression.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mongo/db/pipeline/expression.h b/src/mongo/db/pipeline/expression.h index 74ed09c8dfa..bd711560466 100644 --- a/src/mongo/db/pipeline/expression.h +++ b/src/mongo/db/pipeline/expression.h @@ -1472,6 +1472,10 @@ public: return visitor->visit(this); } + Variables::Id getVariableId() const { + return _varId; + } + protected: void _doAddDependencies(DepsTracker* deps) const final; |