Skip to content

Commit 8c817c3

Browse files
committed
remove useless comment
1 parent 87c529b commit 8c817c3

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/parser/mod.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff 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 });

0 commit comments

Comments
 (0)