Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
kwannoel committed Jul 2, 2024
1 parent 93777be commit bdffc65
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/frontend/src/catalog/schema_catalog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,7 @@ impl SchemaCatalog {
pub fn create_index(&mut self, prost: &PbIndex) {
let name = prost.name.clone();
let id = prost.id.into();
let index_table = self
.get_table_by_id(&prost.index_table_id.into())
.unwrap();
let index_table = self.get_table_by_id(&prost.index_table_id.into()).unwrap();
let primary_table = self
.get_created_table_by_id(&prost.primary_table_id.into())
.unwrap();
Expand Down

0 comments on commit bdffc65

Please sign in to comment.