Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: introduce ddl controller to make all ddl's running in the background #8145

Merged
merged 13 commits into from
Feb 26, 2023
4 changes: 2 additions & 2 deletions src/meta/src/manager/catalog/fragment.rs
Original file line number Diff line number Diff line change
Expand Up @@ -825,7 +825,7 @@ where
pub async fn get_upstream_mview_fragments(
&self,
dependent_relation_ids: &HashSet<TableId>,
) -> MetaResult<HashMap<TableId, Fragment>> {
) -> HashMap<TableId, Fragment> {
let map = &self.core.read().await.table_fragments;
let mut fragments = HashMap::new();

Expand All @@ -835,7 +835,7 @@ where
}
}

Ok(fragments)
fragments
}

/// Get the downstream `Chain` fragments of the specified table.
Expand Down
Loading