We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4830fd3 commit 6d4e722Copy full SHA for 6d4e722
src/parser/mod.rs
@@ -10748,7 +10748,9 @@ impl<'a> Parser<'a> {
10748
pipe_operators.push(PipeOperator::OrderBy { exprs })
10749
}
10750
unhandled => {
10751
- unreachable!("`expect_one_of_keywords` further up allowed unhandled keyword: {unhandled:?}");
+ return Err(ParserError::ParserError(format!(
10752
+ "`expect_one_of_keywords` further up allowed unhandled keyword: {unhandled:?}"
10753
+ )))
10754
10755
10756
0 commit comments