We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2158948 commit 202582cCopy full SHA for 202582c
1 file changed
src/parser/mod.rs
@@ -10419,7 +10419,9 @@ impl<'a> Parser<'a> {
10419
let exprs = self.parse_comma_separated(Parser::parse_order_by_expr)?;
10420
pipe_operators.push(PipeOperator::OrderBy { exprs })
10421
}
10422
- _ => {}
+ unhandled => {
10423
+ unreachable!("`expect_one_of_keywords` further up allowed unhandled keyword: {unhandled:?}");
10424
+ }
10425
10426
10427
Ok(pipe_operators)
0 commit comments