Skip to content

Commit d340e57

Browse files
committed
rename
Signed-off-by: coldWater <forsaken628@gmail.com>
1 parent 108889c commit d340e57

File tree

9 files changed

+17
-17
lines changed

9 files changed

+17
-17
lines changed

src/query/pipeline/transforms/src/processors/transforms/transform_multi_sort_merge.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ pub fn try_add_multi_sort_merge(
7777
}
7878
let output_port = OutputPort::create();
7979

80-
let processor = ProcessorPtr::create(create_multi_sort_merge_processor(
80+
let processor = ProcessorPtr::create(create_processor(
8181
inputs_port.clone(),
8282
output_port.clone(),
8383
schema,
@@ -98,7 +98,7 @@ pub fn try_add_multi_sort_merge(
9898
}
9999
}
100100

101-
pub fn create_multi_sort_merge_processor(
101+
fn create_processor(
102102
inputs: Vec<Arc<InputPort>>,
103103
output: Arc<OutputPort>,
104104
schema: DataSchemaRef,

src/query/service/src/pipelines/processors/transforms/sort/mod.rs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,19 @@ use sort_spill::SpillableBlock;
2525
use crate::spillers::Spiller;
2626

2727
mod bounds;
28-
mod builder;
29-
mod collect;
30-
mod exchange;
31-
mod execute;
3228
mod merge_sort;
33-
mod route;
34-
mod shuffle;
29+
mod sort_builder;
30+
mod sort_collect;
31+
mod sort_exchange;
32+
mod sort_execute;
33+
mod sort_route;
34+
mod sort_shuffle;
3535
mod sort_spill;
3636

37-
pub use builder::*;
38-
pub use exchange::*;
39-
pub use route::*;
40-
pub use shuffle::*;
37+
pub use sort_builder::*;
38+
pub use sort_exchange::*;
39+
pub use sort_route::*;
40+
pub use sort_shuffle::*;
4141

4242
#[derive(Clone)]
4343
struct Base {

src/query/service/src/pipelines/processors/transforms/sort/builder.rs renamed to src/query/service/src/pipelines/processors/transforms/sort/sort_builder.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ use databend_common_pipeline_transforms::sort::Rows;
3333
use databend_common_pipeline_transforms::sort::RowsTypeVisitor;
3434
use databend_common_pipeline_transforms::MemorySettings;
3535

36-
use super::collect::TransformSortCollect;
37-
use super::execute::TransformSortExecute;
3836
use super::merge_sort::TransformSort;
39-
use super::shuffle::SortSampleState;
40-
use super::shuffle::TransformSortShuffle;
37+
use super::sort_collect::TransformSortCollect;
38+
use super::sort_execute::TransformSortExecute;
39+
use super::sort_shuffle::SortSampleState;
40+
use super::sort_shuffle::TransformSortShuffle;
4141
use super::Base;
4242
use crate::spillers::Spiller;
4343

src/query/settings/src/settings_default.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -634,7 +634,7 @@ impl DefaultSettings {
634634
range: Some(SettingRange::Numeric(4 * 1024..=u64::MAX)),
635635
}),
636636
("range_shuffle_sort_simple_size", DefaultSettingValue {
637-
value: UserSettingValue::UInt64(20),
637+
value: UserSettingValue::UInt64(0),
638638
desc: "Sets the simple size per partition used for range shuffle sorting, 0 to disable range shuffle sorting.",
639639
mode: SettingMode::Both,
640640
scope: SettingScope::Both,

0 commit comments

Comments
 (0)