Skip to content

Commit

Permalink
update proto
Browse files Browse the repository at this point in the history
Signed-off-by: Bugen Zhao <i@bugenzhao.com>
  • Loading branch information
BugenZhao committed Mar 14, 2023
1 parent 3dcd6b4 commit 1261ef8
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 3 deletions.
20 changes: 19 additions & 1 deletion dashboard/proto/gen/stream_plan.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions proto/stream_plan.proto
Original file line number Diff line number Diff line change
Expand Up @@ -389,9 +389,11 @@ message ChainNode {
uint32 table_id = 1;
// The schema of input stream, which will be used to build a MergeNode
repeated plan_common.Field upstream_fields = 2;
// Which columns from upstream are used in this Chain node.
// The columns from the upstream table to output.
// TODO: rename this field.
repeated uint32 upstream_column_indices = 3;
// TODO
// The columns from the upstream table that'll be internally required by this chain node.
// TODO: This is currently only used by backfill table scan. We should also apply it to the upstream dispatcher (#4529).
repeated int32 upstream_column_ids = 8;
// Generally, the barrier needs to be rearranged during the MV creation process, so that data can
// be flushed to shared buffer periodically, instead of making the first epoch from batch query extra
Expand Down

0 comments on commit 1261ef8

Please sign in to comment.