File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
rust/cubesqlplanner/cubesqlplanner/src Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ impl PushDownBuilderContext {
46
46
Ok ( schema. clone ( ) )
47
47
} else {
48
48
Err ( CubeError :: internal ( format ! (
49
- "Cannot find schema for mulit stage cte {}" ,
49
+ "Cannot find schema for multi stage cte {}" ,
50
50
name
51
51
) ) )
52
52
}
Original file line number Diff line number Diff line change @@ -77,7 +77,11 @@ impl SelectBuilder {
77
77
. add_column ( SchemaColumn :: new ( alias. clone ( ) , Some ( member. full_name ( ) ) ) ) ;
78
78
}
79
79
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
+ ) {
81
85
let alias = if let Some ( alias) = alias {
82
86
alias
83
87
} else {
You can’t perform that action at this time.
0 commit comments