Skip to content

Commit

Permalink
pass internal tables
Browse files Browse the repository at this point in the history
  • Loading branch information
kwannoel committed Oct 25, 2023
1 parent cf08f63 commit 7cfffda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/meta/src/manager/catalog/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ impl CatalogManager {
self.start_create_table_procedure_with_source(source, table)
.await
} else {
self.start_create_table_procedure(table, vec![]).await
self.start_create_table_procedure(table, internal_tables).await
}
}
}
Expand Down
1 change: 1 addition & 0 deletions src/meta/src/rpc/ddl_controller.rs
Original file line number Diff line number Diff line change
Expand Up @@ -429,6 +429,7 @@ impl DdlController {

let env = StreamEnvironment::from_protobuf(fragment_graph.get_env().unwrap());

// Persist tables
tracing::debug!(id = stream_job.id(), "preparing stream job");
let fragment_graph = self
.prepare_stream_job(&mut stream_job, fragment_graph)
Expand Down

0 comments on commit 7cfffda

Please sign in to comment.