Skip to content
This repository has been archived by the owner on Aug 13, 2024. It is now read-only.

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
liurenjie1024 committed Dec 21, 2023
1 parent e6243f4 commit b5f9e5d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions icelake/src/catalog/rest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ impl Catalog for RestCatalog {
table_metadata,
update_table.table_name.clone(),
)
.build()?)
.build()?)
}
}

Expand Down Expand Up @@ -289,7 +289,7 @@ impl Endpoint {
&ns.encode_in_url()?,
"tables",
]
.join("/"))
.join("/"))
}

fn table(&self, table: &TableIdentifier) -> Result<String> {
Expand All @@ -301,7 +301,7 @@ impl Endpoint {
"tables",
encode(&table.name).as_ref(),
]
.join("/"))
.join("/"))
}
}

Expand All @@ -325,13 +325,13 @@ pub mod models {
use crate::{error::Result, types::SchemaSerDe, ErrorKind};
use serde::{Deserialize, Serialize};

use crate::types::{parse_table_metadata, TableMetadata};
use crate::{
catalog::{self, MetadataUpdate, UpdateRequirement},
table,
types::{SnapshotSerDe, TableMetadataSerDe},
Error,
};
use crate::types::{parse_table_metadata, TableMetadata};

#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct TableIdentifier {
Expand Down

0 comments on commit b5f9e5d

Please sign in to comment.