summaryrefslogtreecommitdiff
path: root/src/mongo/db/pipeline/stub_mongo_process_interface.h
diff options
context:
space:
mode:
authorNathan Myers <ncm@cantrip.org>2017-10-10 00:09:08 -0400
committerNathan Myers <nathan.myers@10gen.com>2017-10-20 16:42:06 -0400
commitf32371804b610a22fabd7ef8bc726c431c547cf3 (patch)
tree9e14810485ca9cd13a3997bae0dc8ef3539670f4 /src/mongo/db/pipeline/stub_mongo_process_interface.h
parentcebd8dfd83281b224bc6bb155b134f7f12d1f37f (diff)
downloadmongo-f32371804b610a22fabd7ef8bc726c431c547cf3.tar.gz
SERVER-31192 Make Change Stream extract documentKey from insert op log entry
Diffstat (limited to 'src/mongo/db/pipeline/stub_mongo_process_interface.h')
-rw-r--r--src/mongo/db/pipeline/stub_mongo_process_interface.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mongo/db/pipeline/stub_mongo_process_interface.h b/src/mongo/db/pipeline/stub_mongo_process_interface.h
index 9aaae5bb27f..1a1a72f1224 100644
--- a/src/mongo/db/pipeline/stub_mongo_process_interface.h
+++ b/src/mongo/db/pipeline/stub_mongo_process_interface.h
@@ -113,5 +113,9 @@ public:
std::string getShardName(OperationContext* opCtx) const override {
MONGO_UNREACHABLE;
}
+
+ std::vector<FieldPath> collectDocumentKeyFields(UUID) const override {
+ MONGO_UNREACHABLE;
+ }
};
} // namespace mongo