@@ -156,7 +156,7 @@ impl Coordinator {
156156 #[ instrument( level = "debug" ) ]
157157 async fn apply_catalog_implications_inner (
158158 & mut self ,
159- mut ctx : Option < & mut ExecuteContext > ,
159+ ctx : Option < & mut ExecuteContext > ,
160160 implications : Vec < ( CatalogItemId , CatalogImplication ) > ,
161161 cluster_commands : Vec < ( ClusterId , CatalogImplication ) > ,
162162 cluster_replica_commands : Vec < ( ( ClusterId , ReplicaId ) , CatalogImplication ) > ,
@@ -203,7 +203,7 @@ impl Coordinator {
203203 match implication {
204204 CatalogImplication :: Table ( CatalogImplicationKind :: Added ( table) ) => {
205205 self . handle_create_table (
206- & mut ctx,
206+ & ctx,
207207 & mut table_collections_to_create,
208208 & mut storage_policies_to_initialize,
209209 & mut execution_timestamps_to_set,
@@ -900,8 +900,8 @@ impl Coordinator {
900900
901901 #[ instrument( level = "debug" ) ]
902902 async fn handle_create_table (
903- & mut self ,
904- ctx : & mut Option < & mut ExecuteContext > ,
903+ & self ,
904+ ctx : & Option < & mut ExecuteContext > ,
905905 storage_collections_to_create : & mut BTreeMap < GlobalId , CollectionDescription < Timestamp > > ,
906906 storage_policies_to_initialize : & mut BTreeMap < CompactionWindow , BTreeSet < GlobalId > > ,
907907 execution_timestamps_to_set : & mut BTreeSet < StatementLoggingId > ,
@@ -1155,7 +1155,7 @@ impl Coordinator {
11551155
11561156 #[ instrument( level = "debug" ) ]
11571157 async fn handle_create_source (
1158- & mut self ,
1158+ & self ,
11591159 storage_collections_to_create : & mut BTreeMap < GlobalId , CollectionDescription < Timestamp > > ,
11601160 storage_policies_to_initialize : & mut BTreeMap < CompactionWindow , BTreeSet < GlobalId > > ,
11611161 item_id : CatalogItemId ,
0 commit comments