Skip to content

Commit 29f3f65

Browse files
committed
remove builder.contain_sink_processor
1 parent b548edc commit 29f3f65

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

src/query/service/src/physical_plans/physical_aggregate_partial.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,6 @@ impl IPhysicalPlan for AggregatePartial {
167167
}
168168

169169
fn build_pipeline2(&self, builder: &mut PipelineBuilder) -> Result<()> {
170-
builder.contain_sink_processor = true;
171170
self.input.build_pipeline(builder)?;
172171

173172
let max_block_size = builder.settings.get_max_block_size()?;

src/query/service/src/pipelines/pipeline_builder.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,6 @@ pub struct PipelineBuilder {
5959

6060
pub r_cte_scan_interpreters: Vec<CreateTableInterpreter>,
6161
pub(crate) is_exchange_stack: Vec<bool>,
62-
63-
pub contain_sink_processor: bool,
6462
}
6563

6664
impl PipelineBuilder {
@@ -80,7 +78,6 @@ impl PipelineBuilder {
8078
join_state: None,
8179
hash_join_states: HashMap::new(),
8280
r_cte_scan_interpreters: vec![],
83-
contain_sink_processor: false,
8481
is_exchange_stack: vec![],
8582
}
8683
}

0 commit comments

Comments
 (0)