Skip to content

Commit

Permalink
add internal tables
Browse files Browse the repository at this point in the history
  • Loading branch information
kwannoel committed Feb 5, 2025
1 parent 5ad81a7 commit 05ada34
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/common/src/util/stream_graph_visitor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,7 @@ pub fn visit_stream_node_tables_inner<F>(
always!(node.table, "Materialize")
}

// Global Approx Percentile
NodeBody::GlobalApproxPercentile(node) => {
always!(node.bucket_state_table, "GlobalApproxPercentileBucketState");
always!(node.count_state_table, "GlobalApproxPercentileCountState");
Expand All @@ -276,6 +277,11 @@ pub fn visit_stream_node_tables_inner<F>(
always!(node.left_table, "AsOfJoinLeft");
always!(node.right_table, "AsOfJoinRight");
}

// Synced Log Store
NodeBody::SyncLogStore(node) => {
always!(node.log_store_table, "StreamSyncLogStore");
}
_ => {}
}
};
Expand Down

0 comments on commit 05ada34

Please sign in to comment.