@@ -49,7 +49,7 @@ use mz_ore::instrument;
4949use mz_ore:: retry:: Retry ;
5050use mz_ore:: str:: StrExt ;
5151use mz_ore:: task;
52- use mz_repr:: { CatalogItemId , GlobalId , RelationVersion , RelationVersionSelector , Timestamp } ;
52+ use mz_repr:: { CatalogItemId , GlobalId , RelationVersion , RelationVersionSelector } ;
5353use mz_sql:: plan:: ConnectionDetails ;
5454use mz_storage_client:: controller:: { CollectionDescription , DataSource } ;
5555use mz_storage_types:: connections:: PostgresConnection ;
@@ -1056,7 +1056,7 @@ impl Coordinator {
10561056 #[ instrument( level = "debug" ) ]
10571057 async fn create_table_collections (
10581058 & mut self ,
1059- table_collections_to_create : BTreeMap < GlobalId , CollectionDescription < Timestamp > > ,
1059+ table_collections_to_create : BTreeMap < GlobalId , CollectionDescription > ,
10601060 execution_timestamps_to_set : BTreeSet < StatementLoggingId > ,
10611061 ) -> Result < ( ) , AdapterError > {
10621062 // If we have tables, determine the initial validity for the table.
@@ -1101,7 +1101,7 @@ impl Coordinator {
11011101 #[ instrument( level = "debug" ) ]
11021102 async fn create_source_collections (
11031103 & mut self ,
1104- source_collections_to_create : BTreeMap < GlobalId , CollectionDescription < Timestamp > > ,
1104+ source_collections_to_create : BTreeMap < GlobalId , CollectionDescription > ,
11051105 ) -> Result < ( ) , AdapterError > {
11061106 let storage_metadata = self . catalog . state ( ) . storage_metadata ( ) ;
11071107
@@ -1141,7 +1141,7 @@ impl Coordinator {
11411141 async fn handle_create_table (
11421142 & self ,
11431143 ctx : & Option < & mut ExecuteContext > ,
1144- storage_collections_to_create : & mut BTreeMap < GlobalId , CollectionDescription < Timestamp > > ,
1144+ storage_collections_to_create : & mut BTreeMap < GlobalId , CollectionDescription > ,
11451145 storage_policies_to_initialize : & mut BTreeMap < CompactionWindow , BTreeSet < GlobalId > > ,
11461146 execution_timestamps_to_set : & mut BTreeSet < StatementLoggingId > ,
11471147 table_id : CatalogItemId ,
@@ -1192,7 +1192,7 @@ impl Coordinator {
11921192 let global_ingestion_id =
11931193 self . catalog ( ) . get_entry ( ingestion_id) . latest_global_id ( ) ;
11941194
1195- let collection_desc = CollectionDescription :: < Timestamp > {
1195+ let collection_desc = CollectionDescription {
11961196 desc : table. desc . latest ( ) ,
11971197 data_source : DataSource :: IngestionExport {
11981198 ingestion_id : global_ingestion_id,
@@ -1243,7 +1243,7 @@ impl Coordinator {
12431243 ) ;
12441244 let desc = table. desc . latest ( ) ;
12451245
1246- let collection_desc = CollectionDescription :: < Timestamp > {
1246+ let collection_desc = CollectionDescription {
12471247 desc,
12481248 data_source : DataSource :: Webhook ,
12491249 since : None ,
@@ -1368,7 +1368,7 @@ impl Coordinator {
13681368 #[ instrument( level = "debug" ) ]
13691369 async fn handle_create_source (
13701370 & self ,
1371- storage_collections_to_create : & mut BTreeMap < GlobalId , CollectionDescription < Timestamp > > ,
1371+ storage_collections_to_create : & mut BTreeMap < GlobalId , CollectionDescription > ,
13721372 storage_policies_to_initialize : & mut BTreeMap < CompactionWindow , BTreeSet < GlobalId > > ,
13731373 item_id : CatalogItemId ,
13741374 source : Source ,
@@ -1447,7 +1447,7 @@ impl Coordinator {
14471447
14481448 storage_collections_to_create. insert (
14491449 source. global_id ,
1450- CollectionDescription :: < Timestamp > {
1450+ CollectionDescription {
14511451 desc : source. desc . clone ( ) ,
14521452 data_source,
14531453 timeline : Some ( source. timeline ) ,
0 commit comments