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 {
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 }
Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments