Skip to content

Commit

Permalink
fix backwards compat tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kwannoel committed Sep 30, 2023
1 parent b522b19 commit 73cc9f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend/src/catalog/table_catalog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ impl From<PbTable> for TableCatalog {
let id = tb.id;
let tb_conflict_behavior = tb.handle_pk_conflict_behavior();
let table_type = tb.get_table_type().unwrap();
let create_type = tb.get_create_type().unwrap_or(CreateType::Foreground);
let create_type = tb.get_create_type().unwrap_or(PbCreateType::Foreground);
let associated_source_id = tb.optional_associated_source_id.map(|id| match id {
OptionalAssociatedSourceId::AssociatedSourceId(id) => id,
});
Expand Down

0 comments on commit 73cc9f1

Please sign in to comment.