Skip to content

Commit

Permalink
clickhouse fixes (#390)
Browse files Browse the repository at this point in the history
  • Loading branch information
phiSgr authored Feb 15, 2024
1 parent dbdf020 commit 5499848
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions apps/framework-cli/src/infrastructure/console.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ pub async fn post_current_state_to_console(
.map(|fo| fo.data_model.clone())
.collect();

olap::clickhouse::check_ready(configured_db_client)
.await
.unwrap();
let tables = olap::clickhouse::fetch_all_tables(configured_db_client)
.await
.unwrap();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ impl DropMaterializedViewContext {
) -> Result<DropMaterializedViewContext, UnsupportedDataTypeError> {
Ok(DropMaterializedViewContext {
db_name: view.db_name,
view_name: format!("{}_view", view.name),
view_name: view.name,
})
}
}
Expand Down

0 comments on commit 5499848

Please sign in to comment.