We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
with_fill
1 parent a362ed7 commit 1613acfCopy full SHA for 1613acf
src/parser/mod.rs
@@ -7633,18 +7633,10 @@ impl<'a> Parser<'a> {
7633
let expr = self.parse_index_expr()?;
7634
let options = self.parse_order_by_options()?;
7635
7636
- let with_fill = if dialect_of!(self is ClickHouseDialect | GenericDialect)
7637
- && self.parse_keywords(&[Keyword::WITH, Keyword::FILL])
7638
- {
7639
- Some(self.parse_with_fill()?)
7640
- } else {
7641
- None
7642
- };
7643
-
7644
Ok(OrderByExpr {
7645
expr,
7646
options,
7647
- with_fill,
+ with_fill: None,
7648
})
7649
}
7650
0 commit comments