We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e98e6b3 commit 445d0cbCopy full SHA for 445d0cb
src/parser/mod.rs
@@ -10458,6 +10458,13 @@ impl<'a> Parser<'a> {
10458
*value = fill.clone();
10459
}
10460
10461
+
10462
+ if align.is_none() {
10463
+ return Err(ParserError::ParserError(
10464
+ "ALIGN argument cannot be omitted in the range select query".into(),
10465
+ ));
10466
+ }
10467
10468
args.args.push(by_num.clone());
10469
args.args.extend(by.clone());
10470
args.args.push(FunctionArg::Unnamed(FunctionArgExpr::Expr(
0 commit comments