Skip to content

Commit a66770d

Browse files
committed
lint
1 parent 0de904a commit a66770d

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

rust/cubesqlplanner/cubesqlplanner/src/physical_plan_builder/context.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ impl PushDownBuilderContext {
4646
Ok(schema.clone())
4747
} else {
4848
Err(CubeError::internal(format!(
49-
"Cannot find schema for mulit stage cte {}",
49+
"Cannot find schema for multi stage cte {}",
5050
name
5151
)))
5252
}

rust/cubesqlplanner/cubesqlplanner/src/plan/builder/select.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,11 @@ impl SelectBuilder {
7777
.add_column(SchemaColumn::new(alias.clone(), Some(member.full_name())));
7878
}
7979

80-
pub fn add_projection_member_without_schema(&mut self, member: &Rc<MemberSymbol>, alias: Option<String>) {
80+
pub fn add_projection_member_without_schema(
81+
&mut self,
82+
member: &Rc<MemberSymbol>,
83+
alias: Option<String>,
84+
) {
8185
let alias = if let Some(alias) = alias {
8286
alias
8387
} else {

0 commit comments

Comments
 (0)