Skip to content

Commit

Permalink
feat(streaming): source executor use table_id for keyspace prefix (#3010
Browse files Browse the repository at this point in the history
)
  • Loading branch information
Li0k authored Jun 7, 2022
1 parent 1fad3e9 commit 87b9397
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stream/src/from_proto/source.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ impl ExecutorBuilder for SourceExecutorBuilder {
Field::with_name(column_desc.data_type.clone(), column_desc.name.clone())
}));
let schema = Schema::new(fields);
let keyspace = Keyspace::executor_root(store, params.executor_id);
let keyspace = Keyspace::table_root(store, &source_id);

Ok(Box::new(SourceExecutor::new(
params.actor_id,
Expand Down

0 comments on commit 87b9397

Please sign in to comment.