diff options
author | Gil Alon <gil.alon@mongodb.com> | 2023-04-19 20:39:57 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2023-04-19 23:48:44 +0000 |
commit | c94c4f3abd0f9c113067e360269301b14363d53e (patch) | |
tree | 3b4346402ce3a564f5e65586920e1c4d94affe83 /src/mongo/db/pipeline/SConscript | |
parent | f534a8ba34a0ef4c80cd222df28f22e5a62bc284 (diff) | |
download | mongo-c94c4f3abd0f9c113067e360269301b14363d53e.tar.gz |
SERVER-72687 support $out to time-series collections
Diffstat (limited to 'src/mongo/db/pipeline/SConscript')
-rw-r--r-- | src/mongo/db/pipeline/SConscript | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mongo/db/pipeline/SConscript b/src/mongo/db/pipeline/SConscript index 75bbde6b153..7650299dd7a 100644 --- a/src/mongo/db/pipeline/SConscript +++ b/src/mongo/db/pipeline/SConscript @@ -380,6 +380,7 @@ pipelineEnv.Library( '$BUILD_DIR/mongo/db/storage/encryption_hooks', '$BUILD_DIR/mongo/db/storage/index_entry_comparison', '$BUILD_DIR/mongo/db/storage/storage_options', + '$BUILD_DIR/mongo/db/timeseries/catalog_helper', '$BUILD_DIR/mongo/db/update/update_document_diff', '$BUILD_DIR/mongo/db/views/resolved_view', '$BUILD_DIR/mongo/s/is_mongos', @@ -393,6 +394,7 @@ pipelineEnv.Library( 'granularity_rounder', ], LIBDEPS_PRIVATE=[ + '$BUILD_DIR/mongo/db/catalog/collection_catalog', '$BUILD_DIR/mongo/db/commands/test_commands_enabled', '$BUILD_DIR/mongo/db/dbdirectclient', '$BUILD_DIR/mongo/db/fts/base_fts', @@ -484,6 +486,7 @@ env.Library( 'document_source_merge.idl', 'document_source_merge_modes.idl', 'document_source_merge_spec.cpp', + 'document_source_out.idl', 'document_source_parsing_validators.cpp', 'document_source_replace_root.idl', 'document_source_set_window_fields.idl', @@ -498,6 +501,7 @@ env.Library( '$BUILD_DIR/mongo/db/exec/document_value/document_value', '$BUILD_DIR/mongo/db/serialization_options', '$BUILD_DIR/mongo/db/storage/key_string', + '$BUILD_DIR/mongo/db/timeseries/timeseries_options', '$BUILD_DIR/mongo/idl/idl_parser', '$BUILD_DIR/mongo/s/common_s', 'runtime_constants_idl', |