File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11207,7 +11207,6 @@ impl<'a> Parser<'a> {
1120711207 pipe_operators.push(PipeOperator::Rename { mappings });
1120811208 }
1120911209 Keyword::UNION => {
11210- // Reuse existing set quantifier parser for consistent BY NAME support
1121111210 let set_quantifier = self.parse_set_quantifier(&Some(SetOperator::Union));
1121211211 let queries = self.parse_pipe_operator_queries()?;
1121311212 pipe_operators.push(PipeOperator::Union {
@@ -11235,7 +11234,6 @@ impl<'a> Parser<'a> {
1123511234 Keyword::CALL => {
1123611235 let function_name = self.parse_object_name(false)?;
1123711236 let function_expr = self.parse_function(function_name)?;
11238- // Extract Function from Expr::Function
1123911237 if let Expr::Function(function) = function_expr {
1124011238 let alias = self.parse_optional_pipe_alias()?;
1124111239 pipe_operators.push(PipeOperator::Call { function, alias });
You can’t perform that action at this time.
0 commit comments