Skip to content

Commit

Permalink
add to async ReadParquetDataSource
Browse files Browse the repository at this point in the history
  • Loading branch information
xudong963 committed Nov 30, 2023
1 parent 271e9fb commit 45edbc1
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/query/service/src/pipelines/executor/executor_graph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,6 @@ impl ExecutingGraph {
) -> Result<()> {
if neighbors.clone().next().is_none() {
// Source node
dbg!("find source node");
let source_node = locker.graph[current_node].clone();
source_node
.processor
Expand All @@ -350,7 +349,6 @@ impl ExecutingGraph {
}
for neighbor in neighbors {
let current_node = locker.graph[neighbor].clone();
dbg!(&current_node.processor.name());
let nodes = locker
.graph
.neighbors_directed(neighbor, Direction::Incoming);
Expand Down

0 comments on commit 45edbc1

Please sign in to comment.