summaryrefslogtreecommitdiff
path: root/src/mongo/db/s
diff options
context:
space:
mode:
authorDan Larkin-York <dan.larkin-york@mongodb.com>2021-05-26 14:34:52 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-05-26 15:07:24 +0000
commit01f22c5f2071ff338fefe256b8d81f0ddf09d88e (patch)
tree984342ab29730f29ccad93e83c6ef735d75fe637 /src/mongo/db/s
parent2af7ba48290bc0cbeecde0540282dbc7a8d4daab (diff)
downloadmongo-01f22c5f2071ff338fefe256b8d81f0ddf09d88e.tar.gz
SERVER-56797 Allow collMod to change time-series bucket granularity
Diffstat (limited to 'src/mongo/db/s')
-rw-r--r--src/mongo/db/s/SConscript5
-rw-r--r--src/mongo/db/s/create_collection_coordinator.cpp2
-rw-r--r--src/mongo/db/s/shardsvr_create_collection_command.cpp2
3 files changed, 5 insertions, 4 deletions
diff --git a/src/mongo/db/s/SConscript b/src/mongo/db/s/SConscript
index 4099f015077..1ce8f1c70dd 100644
--- a/src/mongo/db/s/SConscript
+++ b/src/mongo/db/s/SConscript
@@ -382,7 +382,7 @@ env.Library(
'$BUILD_DIR/mongo/db/repl/primary_only_service',
'$BUILD_DIR/mongo/db/repl/repl_coordinator_interface',
'$BUILD_DIR/mongo/db/repl/replica_set_messages',
- '$BUILD_DIR/mongo/db/timeseries/timeseries_lookup',
+ '$BUILD_DIR/mongo/db/timeseries/timeseries_options',
'$BUILD_DIR/mongo/s/commands/shared_cluster_commands',
'$BUILD_DIR/mongo/s/sharding_initialization',
'$BUILD_DIR/mongo/s/sharding_router_api',
@@ -472,7 +472,8 @@ env.CppUnitTest(
'namespace_metadata_change_notifications_test.cpp',
'op_observer_sharding_test.cpp',
'persistent_task_queue_test.cpp',
- 'range_deletion_util_test.cpp' if not env.TargetOSIs('windows') else [],
+ 'range_deletion_util_test.cpp' if not env.TargetOSIs(
+ 'windows') else [],
'resharding_collection_test.cpp',
'resharding_destined_recipient_test.cpp',
'resharding/resharding_agg_test.cpp',
diff --git a/src/mongo/db/s/create_collection_coordinator.cpp b/src/mongo/db/s/create_collection_coordinator.cpp
index 4f5a76eebd3..9c825a13840 100644
--- a/src/mongo/db/s/create_collection_coordinator.cpp
+++ b/src/mongo/db/s/create_collection_coordinator.cpp
@@ -44,7 +44,7 @@
#include "mongo/db/s/sharding_ddl_util.h"
#include "mongo/db/s/sharding_logging.h"
#include "mongo/db/s/sharding_state.h"
-#include "mongo/db/timeseries/timeseries_lookup.h"
+#include "mongo/db/timeseries/timeseries_options.h"
#include "mongo/logv2/log.h"
#include "mongo/rpc/get_status_from_command_result.h"
#include "mongo/s/cluster_commands_helpers.h"
diff --git a/src/mongo/db/s/shardsvr_create_collection_command.cpp b/src/mongo/db/s/shardsvr_create_collection_command.cpp
index 43cf9d55578..a5923ad38de 100644
--- a/src/mongo/db/s/shardsvr_create_collection_command.cpp
+++ b/src/mongo/db/s/shardsvr_create_collection_command.cpp
@@ -41,7 +41,7 @@
#include "mongo/db/s/sharding_ddl_50_upgrade_downgrade.h"
#include "mongo/db/s/sharding_ddl_coordinator_service.h"
#include "mongo/db/s/sharding_state.h"
-#include "mongo/db/timeseries/timeseries_lookup.h"
+#include "mongo/db/timeseries/timeseries_options.h"
#include "mongo/logv2/log.h"
#include "mongo/s/grid.h"
#include "mongo/s/request_types/shard_collection_gen.h"