diff options
author | kauboy26 <vishnu.kaushik@mongodb.com> | 2023-04-03 20:42:55 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2023-04-03 22:48:14 +0000 |
commit | b4cacf7c95adbdf22c2e20b51bd0d0a31ea6e8d3 (patch) | |
tree | 0c0f3abeafb62e878e5b314c754a9738fbdc5c3e /src/mongo/db/SConscript | |
parent | bb7497ecfdd45b7e87c0015aa515e2838414318d (diff) | |
download | mongo-b4cacf7c95adbdf22c2e20b51bd0d0a31ea6e8d3.tar.gz |
SERVER-72789 Validate the database/shard versions for bulkWrite sent from mongos
Diffstat (limited to 'src/mongo/db/SConscript')
-rw-r--r-- | src/mongo/db/SConscript | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mongo/db/SConscript b/src/mongo/db/SConscript index a783e17f555..30b1d60cbf1 100644 --- a/src/mongo/db/SConscript +++ b/src/mongo/db/SConscript @@ -2510,6 +2510,7 @@ if wiredtiger: envWithAsio.CppUnitTest( target='db_unittest_test', source=[ + 'bulk_write_shard_test.cpp', 'cancelable_operation_context_test.cpp', 'catalog_raii_test.cpp', 'change_collection_expired_change_remover_test.cpp', @@ -2590,6 +2591,7 @@ if wiredtiger: '$BUILD_DIR/mongo/db/change_stream_change_collection_manager', '$BUILD_DIR/mongo/db/change_stream_serverless_helpers', '$BUILD_DIR/mongo/db/change_streams_cluster_parameter', + '$BUILD_DIR/mongo/db/commands/bulk_write_command', '$BUILD_DIR/mongo/db/mongohasher', '$BUILD_DIR/mongo/db/ops/write_ops', '$BUILD_DIR/mongo/db/pipeline/change_stream_expired_pre_image_remover', |