@@ -18,8 +18,8 @@ use maplit::btreemap;
1818use mz_catalog:: memory:: objects:: ClusterReplicaProcessStatus ;
1919use mz_controller:: ControllerResponse ;
2020use mz_controller:: clusters:: { ClusterEvent , ClusterStatus } ;
21- use mz_ore:: instrument;
2221use mz_ore:: cast:: CastFrom ;
22+ use mz_ore:: instrument;
2323use mz_ore:: now:: EpochMillis ;
2424use mz_ore:: option:: OptionExt ;
2525use mz_ore:: tracing:: OpenTelemetryContext ;
@@ -429,11 +429,9 @@ impl Coordinator {
429429 . arrangement_sizes_collection_time_seconds
430430 . start_timer ( ) ;
431431
432- let live_item_id = self
433- . catalog ( )
434- . resolve_builtin_storage_collection (
435- & mz_catalog:: builtin:: MZ_OBJECT_ARRANGEMENT_SIZES_UNIFIED ,
436- ) ;
432+ let live_item_id = self . catalog ( ) . resolve_builtin_storage_collection (
433+ & mz_catalog:: builtin:: MZ_OBJECT_ARRANGEMENT_SIZES_UNIFIED ,
434+ ) ;
437435 let live_global_id = self . catalog . get_entry ( & live_item_id) . latest_global_id ( ) ;
438436 let history_item_id = self
439437 . catalog ( )
@@ -1117,10 +1115,7 @@ mod arrangement_sizes_hydration_tests {
11171115
11181116 #[ mz_ore:: test]
11191117 fn all_non_null_is_hydrated ( ) {
1120- let rows = vec ! [
1121- ( hydration_row( Some ( 100 ) ) , 1 ) ,
1122- ( hydration_row( Some ( 200 ) ) , 1 ) ,
1123- ] ;
1118+ let rows = vec ! [ ( hydration_row( Some ( 100 ) ) , 1 ) , ( hydration_row( Some ( 200 ) ) , 1 ) ] ;
11241119 assert ! ( arrangement_sizes_all_hydrated( & rows) ) ;
11251120 }
11261121
@@ -1138,10 +1133,7 @@ mod arrangement_sizes_hydration_tests {
11381133 fn retractions_are_ignored ( ) {
11391134 // A -1 row represents stale state that consolidation would remove.
11401135 // We skip it so a retracted null doesn't veto hydration.
1141- let rows = vec ! [
1142- ( hydration_row( None ) , -1 ) ,
1143- ( hydration_row( Some ( 100 ) ) , 1 ) ,
1144- ] ;
1136+ let rows = vec ! [ ( hydration_row( None ) , -1 ) , ( hydration_row( Some ( 100 ) ) , 1 ) ] ;
11451137 assert ! ( arrangement_sizes_all_hydrated( & rows) ) ;
11461138 }
11471139
0 commit comments